Artifex/templates/control_plane/model_studio.html
2026-08-17 01:04:02 +07:00

6 lines
767 B
HTML

{% extends "control_plane/base.html" %}
{% block title %}Model Studio | Artifex{% endblock %}
{% block content %}
<header class="page"><div><h2>Model Studio</h2><p class="muted">Archaeology, reproducible experiments, and bounded overnight research.</p></div></header>
<table><thead><tr><th>Training Project</th><th>Status</th><th>Champion</th><th>Profile</th></tr></thead><tbody>{% for item in projects %}<tr><td><a href="{% url 'model_studio_project' item.id %}">{{ item.name }}</a></td><td><span class="badge">{{ item.status }}</span></td><td>{{ item.current_champion.name|default:"Not established" }}</td><td>{{ item.default_profile }}</td></tr>{% empty %}<tr><td colspan="4">No Model Studio projects imported.</td></tr>{% endfor %}</tbody></table>
{% endblock %}