Fix code whitespace

As a separate commit for easier diffing
This commit is contained in:
Chris Hill-Scott
2016-01-11 16:01:39 +00:00
parent 8dbf266e87
commit 7be32be70d

View File

@@ -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">&blacktriangleright;</span><span id="service-arrow-down">&blacktriangledown;</span> Service name goes here</a>
</ul>
</span>
<a id="toggle-service-switcher" href="#">
<span id="service-arrow-right">&blacktriangleright;</span>
<span id="service-arrow-down">&blacktriangledown;</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 %}