Add dataset selection with validation

This commit is contained in:
2020-06-12 22:49:49 +02:00
parent e83f7a0271
commit bec6b19d1c
6 changed files with 31 additions and 21 deletions

View File

@@ -29,14 +29,6 @@
{% block content %}
<div class="container">
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
<div class="alert alert-info" role="alert">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}
{# application content needs to be provided in the app_content block #}
{% block app_content %}{% endblock %}
</div>