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

Your Notes

New Note

Hi {{user.first_name}}, you have made a total of {%count_posts_of user%} notes.

{% for notes in notes %}
{{notes.category}}

{{ notes.title }}

{{ notes.content|safe|truncatewords_html:30 }}

{% 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 %}