This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% load pagination_tags %} | |
| {% load sorting_tags %} | |
| {% block body %} | |
| {% autosort filter.qs as sorted_objects %} | |
| {% autopaginate sorted_objects 10 as object_list %} | |
| {% for object in object_list %} | |
| {{ object }} |
NewerOlder