Bin*_*hen 1 python django sortdirection
我在django中使用评论应用程序,但目前排序方向是按日期(从旧到新),我希望评论按日期显示从新到旧,如何更改?
你可以做:
{% get_comment_list for event as comment_list %}
{% for comment in comment_list reversed %}
...
{% endfor %}
Run Code Online (Sandbox Code Playgroud)
http://docs.djangoproject.com/en/dev/ref/templates/builtins/#for