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.
65 lines
1.8 KiB
65 lines
1.8 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">
|
|
<colgroup>
|
|
<col width="10%">
|
|
<col width="70%">
|
|
<col width="10%">
|
|
<col width="10%">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>id</th>
|
|
<th>Название</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in object_list %}
|
|
|
|
<tr>
|
|
<td>{{ item.id }}</td>
|
|
<td>{{ item.name }}</td>
|
|
<td class="center sorting_1">
|
|
<a class="btn-small btn-info" href="{% url "theme_blog_change" item.id %}">
|
|
Изменить
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a class="btn-small btn-danger delete" href="{% url "theme_blog_delete" item.id %}">
|
|
Удалить
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-success" href="{% url "theme_blog_new" %}"><i class="icon-plus-sign icon-white"></i> Добавить тематику</a>
|
|
</div>
|
|
{# pagination #}
|
|
{% include 'c_admin/includes/admin_pagination.html' with page_obj=object_list %}
|
|
</div>
|
|
{% endblock %}
|
|
|