我想查看在表中显示模型对象列表的视图。 我要添加排序功能。
是否可以像下面这样进行排序:Django中的https://codepen.io/imarkrige/pen/vgmij?
我的意思是列名称中的箭头。单击时将asc更改为desc。 下一步是在更改页面时保持表格排序。
我现在所做的是排序字段,但是在更改页面时并没有保存。
我的基本通用视图包含:
{% block pagination %}
{% if is_paginated %}
<div class="pagination">
<span class="page-links">
{% if page_obj.has_previous %}
<a href="{{ request.path }}?page= {{ page_obj.previous_page_number }}">previous</a>
{% endif %}
<span class="page-current">
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}.
</span>
{% if page_obj.has_next %}
<a href="{{ request.path }}?page={{ page_obj.next_page_number }}">next</a>
{% endif %}
</span>
</div>
{% endif %}
{% endblock %}
我的观点:
class VotesList(generic.ListView):
model = Vote
template_name = 'votes-list.html'
paginate_by = 5
def get_queryset(self):
order = self.request.GET.get('orderby', 'created_date')
new_context = Vote.objects.order_by(order)
return new_context
def get_context_data(self, **kwargs):
context = super(VotesList, self).get_context_data(**kwargs)
context['orderby'] = self.request.GET.get('orderby', 'created_date')
return context
我的模板:
{% block content %}
{% if vote_list %}
<form method="get" action="{% url 'votes-list' %}">
<p>Sortuj: <input type="text" value={{orderby}} name="orderby"/></p>
<p><input type="submit" name="submit" value="Zatwierdź"/></p>
</form>
<table id="vote_list">
<thead>
<tr>
<th>Właściciel</th>
<th>Grupa</th>
<th>Rada</th>
<th>Status</th>
<th>Pytanie</th>
<th>Odp A</th>
<th>Odp B</th>
<th>Odp C</th>
<th>Odp D</th>
<th>Odp E</th>
<th>Odp F</th>
<th>Data utworzenia</th>
<th>Data rozpoczęcia</th>
<th>Data zakończenia</th>
</tr>
</thead>
<tbody>
{% for vote in vote_list %}
<tr>
<td>{{ vote.user }}</td>
<td>{{ vote.group }}</td>
<td>{{ vote.council }}</td>
<td>{{ vote.get_status }}</td>
<td><a href="{{ vote.get_absolute_url }}">{{ vote.question }}</a></td>
<td>{{ vote.ans_a }}</td>
<td>{{ vote.ans_b }}</td>
<td>{{ vote.ans_c }}</td>
<td>{{ vote.ans_d }}</td>
<td>{{ vote.ans_e }}</td>
<td>{{ vote.ans_f }}</td>
<td>{{ vote.created_date }}</td>
<td>{{ vote.begin_date }}</td>
<td>{{ vote.finish_date }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>Brak głosowań!</p>
{% endif %}
{% endblock %}
答案 0 :(得分:1)
您可以通过在分页链接的order
末尾添加href
来保存不使用JS的排序顺序。喜欢:
{% if page_obj.has_previous %}
<a href="{{ request.path }}?page= {{ page_obj.previous_page_number }}&order={{order}}">previous</a>
{% endif %}
答案 1 :(得分:0)
您可以使用javascript进行排序,尤其是datatablejs可以帮助您完成排序。但是,可能必须使用Cookie来保存页面更改之间的排序列表状态。这可能比使用ajax请求在“排序”上将用户首选项存储为用户模型的一部分更容易。
以下是有关如何制作Cookie的参考: https://www.quirksmode.org/js/cookies.html
您可能想要做的是将排序顺序保存在cookie中,然后在页面加载时读取它。阅读后,您可以通过这种方式设置排序顺序。