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.
25 lines
750 B
25 lines
750 B
{% load thumbnail %}
|
|
{% comment %}
|
|
Uses in ajax call
|
|
|
|
Returns table with files properties
|
|
|
|
{% endcomment %}
|
|
{% for file in files %}
|
|
<tr>
|
|
<td>{{ file.id }}</td>
|
|
<td>
|
|
{% thumbnail file.file_path "100x100" crop="center" as im %}
|
|
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
|
|
{% endthumbnail %}
|
|
</td>
|
|
<td>{{ file.file_name }}</td>
|
|
<td>{{ file.purpose }}</td>
|
|
<td>
|
|
<button class="btn btn-danger delete_file" value="{{ file.id }}">
|
|
<i class="icon-trash icon-white"></i> Удалить
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|