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.
62 lines
1.9 KiB
62 lines
1.9 KiB
{% extends 'base.html' %}
|
|
{% load thumbnail %}
|
|
{% block body %}
|
|
<div class="box span8">
|
|
<div class="box-header well">
|
|
<h2><i class="icon-arrow-down"></i>Отзывы для %(calatolog)</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
|
|
<th>Логотип </th>
|
|
<th>Имя</th>
|
|
<th>Компания</th>
|
|
<th>Текст</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in object_list %}
|
|
<tr>
|
|
|
|
<td>
|
|
{% thumbnail item.logo "100x100" crop="center" as im %}
|
|
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}">
|
|
{% endthumbnail %}</td>
|
|
<td>{{ item.name }}</td>
|
|
<td>{{ item.company }}</td>
|
|
<td>{{ item.text }}</td>
|
|
<td class="center sorting_1">
|
|
<a class="btn-small btn-info" href='{% url "feedback_edit" item.id %}'>
|
|
Изменить
|
|
</a>
|
|
</td>
|
|
|
|
<td>
|
|
<a class="btn-small btn-danger delete" href='{% url "feedback_delete" item.id %}'>
|
|
Удалить
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-success" href='{% url "feedback_new" %}'>
|
|
<i class="icon-plus-sign icon-white"></i> Хочу еще один </a>
|
|
</div>
|
|
|
|
<div class="pagination pagination-centered">
|
|
<ul>
|
|
{% if page_obj.has_previous %}
|
|
<li> <a href="?page={{ page_obj.previous_page_number }}">←</a></li>
|
|
{% endif %}
|
|
|
|
{% if page_obj.has_next %}
|
|
<li><a href="?page={{ page_obj.next_page_number }}">→</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |