Skip to content

Instantly share code, notes, and snippets.

@ernado
Created October 30, 2013 12:00
Show Gist options
  • Save ernado/7231483 to your computer and use it in GitHub Desktop.
Save ernado/7231483 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block container %}
{% for folder in folders %}
<div class="panel panel-table panel-info">
<div class="panel-heading"><h3 class="panel-title">{{ folder }}</h3></div>
<table class="table table-striped">
<thead>
<tr>
<th>Имя файла</th>
<th>Размер</th>
</tr>
</thead>
<tbody>
{% for file in folder.files.all %}
<tr>
<td><a class="btn btn-default" href="{{ file.url }}" title="Скачать">{{ file.name }}</a></td>
<td>12 Mb</td>
</tr>
{% endfor %}
</tbody>
</table>
{# </div>#}
</div>
{% endfor %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment