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.
68 lines
3.0 KiB
68 lines
3.0 KiB
{% extends 'c_admin/base.html' %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="box span8">
|
|
<div class="box-header well">
|
|
<h2><i class="icon-arrow-down"></i>Список {% if conf %}конференций{% else %}выставок{% endif %} на главной</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
{% block list_table %}
|
|
<div style="float:left;">
|
|
{% if conf %}
|
|
<a class="btn btn-success" href="{% url 'expobanner-conf-create_main' %}"><i class="icon-plus-sign icon-white"></i> Добавить конференцию</a>
|
|
{% else %}
|
|
<a class="btn btn-success" href="{% url 'expobanner-create_main' %}"><i class="icon-plus-sign icon-white"></i> Добавить выставку</a>
|
|
{% endif %}
|
|
</div>
|
|
<div style="float:right;">
|
|
<form method="get" id="form">
|
|
Показать неактивные <input id="public" type="checkbox" name="show_inactive" value="false">
|
|
</form>
|
|
</div>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
{% if conf %}
|
|
<th>Конференция</th>
|
|
{% else %}
|
|
<th>Выставка</th>
|
|
{% endif %}
|
|
<th>Позиция</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in object_list %}
|
|
<tr>
|
|
<td>{{ item }}</td>
|
|
<td>{{ item.main.position }}</td>
|
|
{% if conf %}
|
|
<td><a href="{% url 'expobanner-conf-update_main' item.main.id %}">Изменить</a> </td>
|
|
<td>{% if item.main.public %}<a href="{% url 'expobanner-conf-main-turn' item.main.id 'off' %}">отключить</a>{% else %}<a href="{% url 'expobanner-conf-main-turn' item.main.id 'on' %}">включить</a>{% endif %} </td>
|
|
{% else %}
|
|
<td><a href="{% url 'expobanner-update_main' item.main.id %}">Изменить</a> </td>
|
|
<td>{% if item.main.public %}<a href="{% url 'expobanner-main-turn' item.main.id 'off' %}">отключить</a>{% else %}<a href="{% url 'expobanner-main-turn' item.main.id 'on' %}">включить</a>{% endif %} </td>
|
|
{% endif %}
|
|
<td><a href="{% url 'expobanner_stat_main' item.main.id %}">Статистика</a> </td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
</div>
|
|
{# pagination #}
|
|
{% include 'c_admin/includes/admin_pagination.html' with page_obj=page_obj %}
|
|
</div>
|
|
<script>
|
|
var cbox = $("#public");
|
|
var form = $("#form");
|
|
if(location.search != "")
|
|
cbox.attr('checked', true);
|
|
cbox.click(function(){
|
|
form.submit()
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|