mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 15:45:51 +00:00
10 lines
458 B
HTML
10 lines
458 B
HTML
<div class="container col-md-4 col-sm-4 col-lg-offset-4">
|
|
<h5>Benchmarks</h5>
|
|
<div class="list-group">
|
|
{% for benchmark in benchmarks %}
|
|
<a href="{{ url_for('main.set_benchmark', benchmark_id=benchmark.id) }}"
|
|
class="list-group-item list-group-item-action {% if benchmark == current_user.benchmark %}active{% endif %}">{{ benchmark.name + " - " + benchmark.description }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|