{% extends "base.html" %} {% block content %}

All {% if label %}{{ label }}{% endif %} issues{% if user %} by {{ user }}{% endif %}

{% if is_paginated %}
{% if page_obj.has_previous %} Prev {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next {% endif %}
{% endif %}
{% for activity in activities %} {% include '_activity.html' %} {% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %} Prev {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next {% endif %}
{% endif %}

{% endblock %}