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.
37 lines
852 B
37 lines
852 B
{% extends 'base.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">
|
|
<table class="table table-hover">
|
|
<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.person_inf }}</td>
|
|
<td>{{ item.phone }}</td>
|
|
<td>{{ item.created }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{% include 'c_admin/includes/admin_pagination.html' with page_obj=page_obj %}
|
|
</div>
|
|
{# pagination #}
|
|
|
|
|
|
{% endblock %}
|
|
|