This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-pratic/src/authentic2_pratic/templates/authentic2_pratic/service_instances.html

20 lines
781 B
HTML

{% extends "authentic2_pratic/collectivity_sidebar.html" %}
{% load i18n staticfiles django_tables2 %}
{% block page-title %}{{ block.super }} - {% trans "Service instances management" %}{% endblock %}
{% block page_title %}{{ block.super }}{% trans "Service instances management" %}{% endblock %}
{% block appbar %}
{{ block.super }}
<a rel="popup" href="{% url "a2-pratic-service-instance-add" collectivity_pk=collectivity.pk %}" id="add-user-btn">{% trans "Add service-instance" %}</a>
{% endblock %}
{% block sidebar %}
<p>{% blocktrans count count=object_list.count %}{{ count }} services instances{% plural %}{{ count }} service instance{% endblocktrans %}</p>
{% endblock %}
{% block main %}
{% render_table table "authentic2_pratic/table.html" %}
{% endblock %}