{% extends "notes/base.html" %} {%load static%} {%load viewans%} {% load crispy_forms_tags %} {% block content %}
Your query has returned {{ paginator.count }} result{{ paginator.count|pluralize }}.

Practice Python | Java | General | Look at what "Practice is all about".

Practice


{% for object in question %}
{{object.category}} {{object.typeof}}

{{object.title }}

{% endfor %} {% if page_obj.has_previous %} « Previous {% endif %} {% for i in page_obj.paginator.page_range %} {% if page_obj.number == i %} Page {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if page_obj.has_next %} Next Last » {% endif %}
{% endblock content %}