{% extends 'pagination/pagination_base.html' %} {% load custom_tags_and_filters %} {% block title %}Accounts and projects{% endblock %} {% block before_pagination %}

Accounts and projects

New project New account
{% endblock %} {% block pagination_content %} {% for account in page %} {% for project in account.project_set.all %} {% empty %} {% endfor %} {% endfor %}
{% include 'pagination/pagination_column.html' with order_by='name' name='Name' %} Project Identifier {% include 'pagination/pagination_column.html' with order_by='active' name='Active' align='yes' %}
{{ account.name }}
{% csrf_token %} {% if account.active %} {% else %} {% endif %}
{{ project.name }} {{ project.application_identifier }}
{% csrf_token %} {% if project.active %} {% else %} {% endif %}
This account does not have any projects
{% endblock %} {% block after_pagination %} {% endblock %}