mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 11:28:25 -04:00
rename choose_service to choose_account
This commit is contained in:
53
app/templates/views/choose-account.html
Normal file
53
app/templates/views/choose-account.html
Normal file
@@ -0,0 +1,53 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
|
||||
{% block per_page_title %}
|
||||
Choose account
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
<h1 class="heading-large">
|
||||
Choose account
|
||||
</h1>
|
||||
|
||||
{% for org in organisations %}
|
||||
<div class="keyline-block"> </div>
|
||||
<div>
|
||||
<nav>
|
||||
<div class="browse-list-item">
|
||||
<a href="{{ url_for('.organisation_dashboard', org_id=org.id) }}" class="browse-list-link">{{ org.name }}</a>
|
||||
</div>
|
||||
<div style="margin-left: 30px" class="browse-list">
|
||||
<ul>
|
||||
{% for item in org.services %}
|
||||
<li class="browse-list-item">
|
||||
<a href="{{ url_for('.service_dashboard', service_id=item.id) }}" class="browse-list-link">{{ item.name }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% if services_without_organisations %}
|
||||
<div class="keyline-block"> </div>
|
||||
<nav class="browse-list">
|
||||
<ul>
|
||||
{% for item in services_without_organisations %}
|
||||
<li class="browse-list-item">
|
||||
<a href="{{ url_for('.service_dashboard', service_id=item.id) }}" class="browse-list-link">{{ item.name }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
{% endif %}
|
||||
{% if can_add_service %}
|
||||
<div class="keyline-block"> </div>
|
||||
<nav class="browse-list">
|
||||
<div class="browse-list-item">
|
||||
<a href="{{ url_for('.add_service') }}" class="browse-list-link">Add a new service…</a>
|
||||
</div>
|
||||
</nav>
|
||||
{% endif %}
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user