mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 15:45:51 +00:00
Fix Excel files
This commit is contained in:
@@ -3,7 +3,13 @@
|
||||
<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>
|
||||
class="list-group-item list-group-item-action flex-column align-items-start {% if benchmark == current_user.benchmark %}active{% endif %}">
|
||||
<div class="d-flex w-100 justify-content-between">
|
||||
<h5 class="mb-1">{{ benchmark.name }}</h5>
|
||||
<small>{{ benchmark.num_files }} files</small>
|
||||
</div>
|
||||
<p class="mb-1">{{ benchmark.description }}</p>
|
||||
</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -28,8 +28,7 @@
|
||||
{% else %}
|
||||
{{ render_nav_item('main.login', 'Login') }}
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
Reference in New Issue
Block a user