f53f32a7c3fd20cc2ab4f2ed64e3f0313aa4dcea
[django_unres.git] / list.html
1 {# simplest template for listing the directory #}
2 <h1>{{ directory_name }}</h1>
3 <ul>
4 {% for file in directory_files %}
5     <li><a href="{% url 'directory_download_file' directory_name file  %}">{{ file }}</a></li>
6 {% endfor %}
7 </ul>