mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 15:45:51 +00:00
Finish select benchmark
This commit is contained in:
9
app/templates/_benchmarks.html
Normal file
9
app/templates/_benchmarks.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<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>
|
Reference in New Issue
Block a user