Files
notifications-admin/app/templates/views/organisations/organisation/index.html
T

21 lines
423 B
HTML
Raw Normal View History

2018-02-13 14:49:03 +00:00
{% extends "org_template.html" %}
2018-02-14 16:13:11 +00:00
{% block org_page_title %}
2019-06-20 10:59:54 +01:00
Usage
2018-02-13 14:49:03 +00:00
{% endblock %}
{% block maincolumn_content %}
2019-04-23 10:03:28 +01:00
<h1 class="heading-medium">
2019-06-20 10:59:54 +01:00
Usage
2018-02-13 14:49:03 +00:00
</h1>
<ul>
2019-06-20 10:35:55 +01:00
{% for service in current_org.live_services %}
2018-02-13 14:49:03 +00:00
<li class="browse-list-item">
2019-06-20 10:59:54 +01:00
<a href="{{ url_for('main.usage', service_id=service.id) }}" class="browse-list-link">{{ service['name'] }}</a>
2018-02-13 14:49:03 +00:00
</li>
{% endfor %}
</ul>
{% endblock %}