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