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.
46 lines
1.2 KiB
46 lines
1.2 KiB
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
|
|
{% block body %}
|
|
{% comment %}
|
|
Displays lists of all cities in the table
|
|
and creating buttons which can change each city
|
|
{% endcomment %}
|
|
|
|
<div class="box span8">
|
|
<div class="box-header well">
|
|
<h2><i class="icon-arrow-down"></i>Логи импорта</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Время импорта</th>
|
|
<th>Робочий файл</th>
|
|
<th>Лог</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in object_list %}
|
|
<tr>
|
|
<td>{{ item.created|date:"Y-m-d H:m:s" }}</td>
|
|
<td><a href="/admin/log/work_file/{{ item.id }}/">скачать</a></td>
|
|
<td><a href="/admin/log/log/{{ item.id }}/">скачать</a></td>
|
|
<td class="center sorting_1">
|
|
<a class="btn btn-danger delete" href="/admin/import/log/delete/{{ item.id }}/">
|
|
<i class="icon-trash icon-white"></i> Удалить
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{% include 'c_admin/includes/admin_pagination.html' with page_obj=objects %}
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|