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.3 KiB
46 lines
1.3 KiB
{% extends 'base.html' %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="box span10">
|
|
<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>id</th>
|
|
<th>Название услуги</th>
|
|
<th>Тип</th>
|
|
<th>Стран</th>
|
|
<th>Виставок</th>
|
|
<th>Конференций</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ object }}
|
|
{% for item in object_list %}
|
|
<tr>
|
|
<td>{{ item.id }}</td>
|
|
<td>{{ item.service.name }}</td>
|
|
<td>{% if item.service.type.mask == 1 %} выставки {% elif item.service.type.mask == 2%} конференции {% elif item.service.type.mask == 3 %} выставки и конференции{% endif %}</td>
|
|
<td>{{ item.countries_count }}</td>
|
|
<td>{{ item.expositions.count }}</td>
|
|
<td>{{ item.conferences.count }}</td>
|
|
<td class="center sorting_1">
|
|
<a class="btn btn-info" href="{% url 'linked_service_update' item.service.url %}">
|
|
<i class="icon-edit icon-white"></i> Управление
|
|
</a>
|
|
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|