You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
303 B
15 lines
303 B
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<div class="foldersindex">
|
|
|
|
<h1>COUCOU BLABLA</h1>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
{% block index %}
|
|
{% for each in index_dict %}
|
|
{% set address = "/description?id=" + each %}
|
|
<a href={{address}}>{{index_dict[each]}}</a> |
|
|
{% endfor %}
|
|
{% endblock index %}
|
|
|