doc-to-lora/webui/templates/index.html
2024-12-23 14:58:16 +00:00

12 lines
No EOL
275 B
HTML

{% extends "base.html" %}
{% block title %}Training Run Visualizer{% endblock %}
{% block content %}
<h1>Select a Training Run</h1>
<ul>
{% for run in runs %}
<li><a href="{{ url_for('visualize', run=run) }}">{{ run }}</a></li>
{% endfor %}
</ul>
{% endblock %}