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.
 
 
 
 
 
 

41 lines
1.5 KiB

{% extends 'base.html' %}
{% load i18n %}
{% block body %}
<div class="box span8">
<div class="box-header well">
<h2><i class="icon-arrow-down"></i>{{ verbose }}</h2>
</div>
<div class="box-content">
{% block list_table %}
<table class="table table-hover">
<thead>
<tr>
<th>{% trans "Объект" %}</th>
<th>{% trans "ссылка для отслеживания" %}</th>
<th>{% trans "целевая ссылка" %}</th>
<th>&nbsp;</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
{% for item in object_list %}
<tr>
<td>{{ item }}</td>
<td>{{request.get_host}}{{ item.get_click_link }}</td>
<td style="word-wrap: break-word; max-width: 200px">{{ item.url }}</td>
<td><a href="{% url 'expobanner-update_link' item.id %}">{% trans "Изменить" %}</a> </td>
<td><a href="{% url 'expobanner_stat_link' item.id %}">{% trans "Статистика" %}</a> </td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
</div>
{# pagination #}
{% include 'c_admin/includes/admin_pagination.html' %}
</div>
<a href="{% url 'expobanner-baneers_control' %}">{% trans "Назад к управлению баннерами" %}</a>
{% endblock %}