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

TTO Dashboard

{# Summary Cards #}
Total IPs
{{ total_ips }}
Submitted to TTO
{{ submitted_ips }}
IPs with High Predicted Readiness
{{ high_readiness }}
{# Removed Readiness Insights here #} {# IP Portfolio Table - Full Width #}
IP Portfolio Overview
{# Filter and Sort Controls #}
Reset
{# IP Table #}
{% for ip in ip_list %} {# Title #} {# Owner #} {# TRL #} {# CRL #} {# Readiness Score #} {# AI Readiness #} {# Status + Simple Marketplace Toggle #} {# Interested Partners Count #} {# Date Submitted #} {# Actions #} {% empty %} {% endfor %}
Title Owner TRL CRL Readiness AI Readiness Status Interested Date Submitted Actions
{{ ip.title }}
{{ ip.owner.username }} {{ ip.trl|default:"—" }} {{ ip.crl|default:"—" }} {% if ip.overall_score is not None %} {% with score=ip.overall_score %} {% if score >= 60 %} {{ score|floatformat:1 }} {% elif score >= 40 %} {{ score|floatformat:1 }} {% else %} {{ score|floatformat:1 }} {% endif %} {% endwith %} {% else %} {% endif %} {% if ip.ai_score %} {{ ip.ai_score|floatformat:1 }} {% else %} {% endif %}
{{ ip.get_status_display }}
{% if ip.is_published %} Live in Marketplace {% else %} Off the Marketplace {% endif %}
{% csrf_token %}
{% if ip.interested_count %} {{ ip.interested_count }} {% else %} 0 {% endif %} {{ ip.created_at|date:"Y-m-d" }}
No IP submissions yet.
{% endblock %}