Created
October 30, 2013 12:00
-
-
Save ernado/7231483 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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