initial git commit
[django_unres.git] / django_simple / directory / templates / directory / 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>