mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 17:58:25 -04:00
Since we added template folders the templates page has had a ‘medium’ sized heading, where other pages have stuck with a ‘large’ size. This commit rationalises the decision around which pages have which heading size: - ‘navigation’ pages (eg templates, team members, email reply to addresses) have medium sized headings - transactional pages (ie ones which have a green button) keep the larger heading size
25 lines
581 B
HTML
25 lines
581 B
HTML
{% extends "org_template.html" %}
|
|
|
|
{% block org_page_title %}
|
|
Services
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-medium">
|
|
Services
|
|
</h1>
|
|
<ul>
|
|
{% for service in organisation_services %}
|
|
<li class="browse-list-item">
|
|
{% if service.has_permission_to_view or current_user.platform_admin %}
|
|
<a href="{{ url_for('main.service_dashboard', service_id=service.id) }}" class="browse-list-link">{{ service['name'] }}</a>
|
|
{% else %}
|
|
{{ service['name'] }}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|