Change page header heading to H1

Partially implements: blueprint detail-pages-ia

Change-Id: Id6057471e34d41bba64c7dfa7f48af0318c80132
This commit is contained in:
Ana Krivokapic 2014-08-19 17:42:01 +02:00
parent e725723143
commit a0f36aa487

View File

@ -1,7 +1,7 @@
{% load i18n %} {% load i18n %}
{% block page_header %} {% block page_header %}
<div class='page-header'> <div class='page-header'>
<h2> <h1>
{% if request.session.domain_context_name %} {% if request.session.domain_context_name %}
<em>{{ request.session.domain_context_name }}:</em> <em>{{ request.session.domain_context_name }}:</em>
{% endif %} {% endif %}
@ -9,6 +9,6 @@
{{ items_count }} {{ items_count }}
{% endif %} {% endif %}
{{ title }} {{ title }}
</h2> </h1>
</div> </div>
{% endblock %} {% endblock %}