{% extends "base.html" %} {% block title %}TTO Dashboard{% endblock %} {% block content %}

TTO Dashboard

Total IPs
{{ total_ips }}
Submitted
{{ submitted_ips }}
IPs with High Predicted Readiness
{{ high_readiness }}
IP Portfolio Overview
{# #} {% for ip in ip_list %} {# #} {% empty %} {% endfor %}
Title Owner TRL CRL SRLAI-Predicted Readiness Status Actions
{{ ip.title }} {{ ip.owner.get_full_name|default:ip.owner.username }} {{ ip.trl|default:"—" }} {{ ip.crl|default:"—" }}{{ ip.srl|default:"—" }} {% if ip.overall_score is not None %} {# Example: show 1 decimal, plus a colored badge #} {% with score=ip.overall_score %} {% if score >= 7 %} {{ score|floatformat:1 }} {% elif score >= 4 %} {{ score|floatformat:1 }} {% else %} {{ score|floatformat:1 }} {% endif %} {% endwith %} {% else %} Not scored {% endif %} {{ ip.get_status_display }} Open Score
No IP submissions yet.
{% endblock %}