1f1943eb
qijun
initial commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "bootstrap/base.html" %}
{% block content %}
<div class="container">
{% for message in get_flashed_messages() %}
<div class="alert alert-warning">
<button type="button" class="close" data-dismiss="alert">×</button>
{{ message }}
</div>
{% endfor %}
{% block page_content %}{% endblock %}
</div>
{% endblock %}
|