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.
21 lines
548 B
21 lines
548 B
{% comment %}
|
|
Uses in ajax call
|
|
|
|
Returns table with files properties
|
|
|
|
{% endcomment %}
|
|
{% for file in files %}
|
|
|
|
<tr>
|
|
<td>{{ file.id }}</td>
|
|
<td><img src="{{ file.file_path.url }}"></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 %}
|
|
|