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.
56 lines
1.6 KiB
56 lines
1.6 KiB
{% extends 'base.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 class='form-search'>
|
|
{{ search_form.search_name }}
|
|
<button type="submit" class="btn">Найти</button>
|
|
</form>
|
|
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>id</th>
|
|
<th>Название</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in objects %}
|
|
|
|
<tr>
|
|
<td>{{ item.id }}</td>
|
|
<td>{{ item.name }}</td>
|
|
<td class="center sorting_1">
|
|
<a class="btn-small btn-info" href="/admin/theme/theme/change/{{ item.id }}">
|
|
Изменить
|
|
</a>
|
|
</td>
|
|
|
|
<td>
|
|
<a class="btn-small btn-inverse" href="/admin/theme/theme/copy/{{ item.id }}/">
|
|
Копировать
|
|
</a>
|
|
</td>
|
|
|
|
<td>
|
|
<a class="btn-small btn-danger delete" href="/admin/theme/theme/delete/{{ item.id }}/">
|
|
Удалить
|
|
</a>
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-success" href="/admin/theme/theme/add"><i class="icon-plus-sign icon-white"></i> Добавить тематику</a>
|
|
</div>
|
|
{# pagination #}
|
|
{% include 'admin/includes/admin_pagination.html' with page_obj=objects %}
|
|
</div>
|
|
{% endblock %} |