{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block title %}TTO Dashboard{% endblock %} {% block content %}
| Title | Owner | TRL | CRL | Readiness | AI Readiness | Status | Interested | Date Submitted | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
{{ ip.title }}
|
{# Owner #}
{{ ip.owner.username }} | {# TRL #}{{ ip.trl|default:"—" }} | {# CRL #}{{ ip.crl|default:"—" }} | {# Readiness Score #}{% 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 %} | {# AI Readiness #}{% if ip.ai_score %} {{ ip.ai_score|floatformat:1 }} {% else %} – {% endif %} | {# Status + Simple Marketplace Toggle #}
{{ ip.get_status_display }}
{% if ip.is_published %}
Live in Marketplace
{% else %}
Off the Marketplace
{% endif %}
|
{# Interested Partners Count #}
{% if ip.interested_count %} {{ ip.interested_count }} {% else %} 0 {% endif %} | {# Date Submitted #}{{ ip.created_at|date:"Y-m-d" }} | {# Actions #}|
| No IP submissions yet. | |||||||||