summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/common/_domain_page_header.html
blob: 149fbf28c81562237d491d6317a91fdfa50615e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% load i18n %}
{% block page_header %}
  <div class="page-header">
    <h1>
    {% if 'domain_context_name' in request.session %}
      <em>{% blocktrans with context_name=request.session.domain_context_name %}{{ context_name }}:{% endblocktrans %}</em>
    {% endif %}
    {{ title }}
    </h1>
  </div>
{% endblock %}