summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/common/_domain_page_header.html
blob: b77ce87c805ada9d26b317f64e7bab41041e4327 (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 %}