Skip to content
Snippets Groups Projects
Commit bcd2276d authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Update template for top10

parent 957d4d52
No related branches found
No related tags found
No related merge requests found
......@@ -3,14 +3,19 @@
{% block main %}
{% for category, plot_filenames in plots.items() %}
<h3>{{ category }}</h3>
<h3 style="text-align: center">{{ category }}</h3>
<div class="container-fluid">
<div class="row">
{% for plot_filename in plot_filenames %}
<div class="col-md-12">
{% for idx, plot_filename in enumerate(plot_filenames) %}
<div class="col-md-2">
<h3>#{{ idx + 1 }}</h3>
</div>
<div class="col-md-10">
<a href="{{ plot_filename }}">
<img class="plot img-responsive"
src="{{ plot_filename }}"
alt="{{ plot_filename }}"/>
</a>
</div>
{% endfor %}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment