Fix Excel files

This commit is contained in:
2023-06-06 17:25:47 +02:00
parent 8e29948809
commit 8c576f8f2c
19 changed files with 182 additions and 339 deletions

View File

@@ -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>

View File

@@ -28,8 +28,7 @@
{% else %}
{{ render_nav_item('main.login', 'Login') }}
{% endif %}
</ul>
</div>
</div>
</div>
</div>
</nav>