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

Your Tasks

New To-Do Hi {{user.first_name}}, you have a total of {%count_posts_of user%} task(s).

{% for todo in todo %}

{{ todo.title }}

{{ todo.content }}

Done Edit ✏️️
{% 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 %}