PushingScores/templates/theindex.html

16 lines
286 B
HTML
Raw Normal View History

2019-05-27 12:05:42 +02:00
{% extends "layout.html" %}
{% block content %}
2019-05-27 17:32:05 +02:00
<div class="foldersindex">
2019-05-27 12:05:42 +02:00
{% block index %}
{% for each in index_dict %}
{% set address = "/description?id=" + each %}
2019-05-27 17:32:05 +02:00
<a href={{address}}>{{index_dict[each]}}</a> <br />
2019-05-27 12:05:42 +02:00
{% endfor %}
{% endblock index %}
2019-05-27 17:32:05 +02:00
</div>
{% endblock %}