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