Skip to content
Snippets Groups Projects
Commit b71f858f authored by thomaswoehlke's avatar thomaswoehlke
Browse files

### 0.0.7 Release

* Issue #8 WhoServiceUpdate.update_db_short()
* Issue #9 URL: /who/update/short
* Issue #10 async who_update_short_task
* Issue #11 WhoServiceUpdate.__update_who_global_data_short()
* Issue #12 better layout for flash messages
parent 665cdf7c
No related branches found
No related tags found
No related merge requests found
<div class="fragment-flash-messages"> <div class="fragment-flash-messages">
{% for message in get_flashed_messages() %} {% with errors = get_flashed_messages(category_filter=["error"]) %}
<div class="alert alert-success" role="alert"> {% if errors %}
<span>{{ message }}</span> {% for message in errors %}
<button type="button" class="close" data-dismiss="alert" aria-label="Close"> <div class="alert alert-danger" role="alert">
<span aria-hidden="true">&times;</span> <span>{{ message }}</span>
</button> <button type="button" class="close" data-dismiss="alert" aria-label="Close">
</div> <span aria-hidden="true">&times;</span>
{% endfor %} </button>
</div>
{% endfor %}
{% endif %}
{% endwith %}
{% with messages = get_flashed_messages(category_filter=["message"]) %}
{% if messages %}
{% for message in messages %}
<div class="alert alert-success" role="alert">
<span>{{ message }}</span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
{% endfor %}
{% endif %}
{% endwith %}
</div> </div>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment