mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
Fix code whitespace
As a separate commit for easier diffing
This commit is contained in:
@@ -46,38 +46,41 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% if current_user.is_authenticated() %}
|
|
||||||
|
{% if current_user.is_authenticated() %}
|
||||||
<nav id="user-bar">
|
<nav id="user-bar">
|
||||||
<span id="service-switcher">
|
<span id="service-switcher">
|
||||||
<a id="toggle-service-switcher" href="#"><span id="service-arrow-right">▸</span><span id="service-arrow-down">▾</span> Service name goes here</a>
|
<a id="toggle-service-switcher" href="#">
|
||||||
|
<span id="service-arrow-right">▸</span>
|
||||||
</ul>
|
<span id="service-arrow-down">▾</span>
|
||||||
</span>
|
Service name goes here
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
<div id="user-admin">
|
<div id="user-admin">
|
||||||
<span id="user-name"><a href="{{ url_for('.userprofile') }}">Ms. User Name</a></span>
|
<span id="user-name"><a href="{{ url_for('.userprofile') }}">Ms. User Name</a></span>
|
||||||
<span id="sign-out"><a href="{{ url_for('main.sign_out')}}">Sign out</a></span>
|
<span id="sign-out"><a href="{{ url_for('main.sign_out')}}">Sign out</a></span>
|
||||||
</div>
|
</div>
|
||||||
<ul id="service-nav">
|
<ul id="service-nav">
|
||||||
<li><a href="#">Switch to A N Other service</a></li>
|
<li><a href="#">Switch to A N Other service</a></li>
|
||||||
<li><a href="#">Add a new service to Notify</a></li>
|
<li><a href="#">Add a new service to Notify</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
<main id="content" role="main" class="page-container">
|
||||||
<main id="content" role="main" class="page-container">
|
{% with messages = get_flashed_messages() %}
|
||||||
{% with messages = get_flashed_messages() %}
|
{% if messages %}
|
||||||
{% if messages %}
|
<div class="error-summary">
|
||||||
<div class="error-summary">
|
<ul>
|
||||||
<ul>
|
{% for message in messages %}
|
||||||
{% for message in messages %}
|
<li>{{ message }}</li>
|
||||||
<li>{{ message }}</li>
|
{% endfor %}
|
||||||
{% endfor %}
|
</ul>
|
||||||
</ul>
|
</div>
|
||||||
</div>
|
{% endif %}
|
||||||
{% endif %}
|
{% endwith %}
|
||||||
{% endwith %}
|
{% block fullwidth_content %}{% endblock %}
|
||||||
{% block fullwidth_content %}{% endblock %}
|
</main>
|
||||||
</main>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block body_end %}
|
{% block body_end %}
|
||||||
|
|||||||
Reference in New Issue
Block a user