horizon/horizon/templates/horizon/common/_domain_page_header.html

12 lines
316 B
HTML

{% load i18n %}
{% block page_header %}
<div class='page-header'>
<h1>
{% if request.session.domain_context_name %}
<em>{% blocktrans with context_name=request.session.domain_context_name %}{{ context_name }}:{% endblocktrans %}</em>
{% endif %}
{{ title }}
</h1>
</div>
{% endblock %}