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.8 KiB
46 lines
1.8 KiB
{% extends 'admin/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>Название</th>
|
|
<th>Список рассылки</th>
|
|
<th>Статус</th>
|
|
<th>Дата отправки</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in object_list %}
|
|
<tr>
|
|
<td>{{ item.title }}</td>
|
|
<td>{{ item.mailing_list }}</td>
|
|
<td>{{ item.get_status_text }}</td>
|
|
<td>{{ item.sending_date|date:"Y-m-d H:i" }}</td>
|
|
<td><a href="{% url 'newsletters_newsletters_send_test' item.id %}">тест</a> </td>
|
|
<td><a href="{% url 'newsletters_newsletters_update' item.id %}">Изменить</a> </td>
|
|
<td><a href="{% url 'newsletters_newsletters_history' item.id %}">История</a> </td>
|
|
<td>{% if item.status == item.SENT or item.status == item.CANCELED %}<a href="{% url 'newsletters_newsletters_stat' item.id %}">Статистика</a>{% endif %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-success" href="{% url 'newsletters_newsletters_create' %}"><i class="icon-plus-sign icon-white"></i> Добавить новый список</a>
|
|
</div>
|
|
{# pagination #}
|
|
{% include 'admin/includes/admin_pagination.html' with page_obj=object_list %}
|
|
</div>
|
|
|
|
{% endblock %} |