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.
66 lines
2.0 KiB
66 lines
2.0 KiB
{% extends 'admin_list.html' %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="box span8">
|
|
<div class="box-header well">
|
|
<h2><i class="icon-arrow-down"></i>Фильтры</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
<form>
|
|
{{ form }}
|
|
|
|
<button type="submit" class="btn">Найти</button>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<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.name }}</td>
|
|
<td>{% ifnotequal item.country None %}{{ item.country }} {% endifnotequal %}</td>
|
|
<td>{% ifnotequal item.city None %}{{ item.city }} {% endifnotequal %}</td>
|
|
<td class="center sorting_1">
|
|
<a class="btn-small btn-info" href="/admin/place_exposition/change/{{ item.url|lower }}">
|
|
Изменить
|
|
</a>
|
|
</td>
|
|
<td class="center sorting_1">
|
|
<a class="btn-small btn-inverse" href="/admin/place_exposition/copy/{{ item.url|lower }}">
|
|
Копировать
|
|
</a>
|
|
</td>
|
|
|
|
<td>
|
|
<a class="btn-small btn-danger" href="/admin/place_exposition/delete/{{ item.url|lower }}">
|
|
Удалить
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-success" href="/admin/place_exposition/add"><i class="icon-plus-sign icon-white"></i> Добавить выставочный центр</a>
|
|
</div>
|
|
{# pagination #}
|
|
{% include 'admin/includes/admin_pagination.html' with page_obj=object_list %}
|
|
|
|
</div>
|
|
|
|
{% endblock %} |