{% extends "admin/base.html" %}
{% block admin_content %}
ID |
Name |
ELO Score |
Matches |
Active |
Open Source |
Actions |
{% for model in tts_models %}
{{ model.id }} |
{{ model.name }} |
{{ model.current_elo|int }} |
{{ model.match_count }} |
{{ "Yes" if model.is_active else "No" }} |
{{ "Yes" if model.is_open else "No" }} |
Edit
|
{% endfor %}
ID |
Name |
ELO Score |
Matches |
Active |
Open Source |
Actions |
{% for model in conversational_models %}
{{ model.id }} |
{{ model.name }} |
{{ model.current_elo|int }} |
{{ model.match_count }} |
{{ "Yes" if model.is_active else "No" }} |
{{ "Yes" if model.is_open else "No" }} |
Edit
|
{% endfor %}
{% endblock %}