mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 03:28:25 -04:00
Go to organisation stub page which will eventually show list of services
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<div class="column-three-quarters">
|
||||
{% for org in organisations %}
|
||||
<div>
|
||||
<a href="{{ url_for('main.update_organisation', org_id=org['id']) }}" class="browse-list-link">{{ org['name'] }}</a>
|
||||
<a href="{{ url_for('main.view_organisation', org_id=org['id']) }}" class="browse-list-link">{{ org['name'] }}</a>
|
||||
{% if not org['active'] %}
|
||||
<span class="table-field-status-default heading-medium">- archived</span>
|
||||
{% endif %}
|
||||
|
||||
23
app/templates/views/organisations/view-organisation.html
Normal file
23
app/templates/views/organisations/view-organisation.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user