2019-02-10 13:00:35 +00:00
|
|
|
{% extends 'bootstrap/base.html' %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{% if title %}{{ title }}{% else %}No page title{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block navbar %}
|
2019-03-23 11:25:21 +00:00
|
|
|
{{ nav.top_menubar.render() }}
|
2019-02-10 13:00:35 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% 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>
|
|
|
|
{% endblock %}
|