The chosen action is not applicable to all selected issues. Issues for which it has not been applied have been left with checkboxes checked so that you can try again with another action.
{# the 'footer' of the page, with the page navigation and the project-related icons #}
{# pagination #}
{% if page_obj.has_previous %}
{% else %}
{% endif %}
{% if page_obj.object_list|length > 0 %}{# sounds expensive, but this list is cached #}
Issues {{ page_obj.start_index|intcomma }} – {{ page_obj.end_index|intcomma }}
{% else %}
{% if page_obj.number > 1 %}
Less than {{ page_obj.start_index }} Issues {# corresponds to the 1/250 case of having an exactly full page and navigating to an empty page after that #}
{% else %}
0 Issues
{% endif %}
{% endif %}
{% if page_obj.has_next %}
{% else %}
{% endif %}
{# the div with a few project-related icons (pjt-members, pjt-settings, my settings, dsn) on the lower RHS #}
{% if not app_settings.SINGLE_USER %}{% if member.is_admin or request.user.is_superuser %}
{% endif %}{% endif %}
{% if member.is_admin or request.user.is_superuser %}
{% endif %}
{# member-existance is implied if you can see this page #}
{# member-existance is implied if you can see this page #}
{# end of the div with a few project-related icons (pjt-members, pjt-settings, my settings, dsn) on the lower RHS #}
{# 'footer' (containing the icons as well as the pagination) #}