mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 17:45:32 -04:00
24 lines
507 B
HTML
24 lines
507 B
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block per_page_title %}
|
|
{{ organisation['name'] }}
|
|
{% endblock %}
|
|
|
|
{% block service_page_title %}
|
|
{{ organisation['name'] }}
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="heading-large">
|
|
<div>{{ organisation['name'] }}</div>
|
|
</h1>
|
|
<div class="grid-row">
|
|
<div class="column-three-quarters">
|
|
[List of services]
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|