moved bootstrap_messages on base template

This commit is contained in:
Arthur Gerbaud
2016-08-25 10:44:56 +02:00
parent 06cf6c3d35
commit 6bdde54ed2
4 changed files with 16 additions and 8 deletions

View File

@@ -1,10 +1,15 @@
{% extends "base.html" %}
{% block title %}{{ page_title }}{% endblock %}
{% block page_header %}<span style="color:#980300;">{{ page_header }}</span> <small>{{ page_header_small }}</small>{% endblock %}
{% block page_header %}
<span style="color:#980300;">{{ page_header }}</span>
<small>{{ page_header_small }}</small>
{% endblock %}
{% block content %}{% include content_template %}{% endblock %}
{% block content %}
{% include content_template %}
{% endblock %}