summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/common/_page_header.html
blob: ab8585b8b0097cb88a186d4f2a1c8b6cdaf6685d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% load i18n %}
{% block page_header %}
  <div class="page-header">
    <h1>{{ title }}</h1>
    {% if actions %}
      <form class="actions_column pull-right" action="{{ url }}" method="POST">
        {% csrf_token %}
        {{ actions }}
      </form>
    {% endif %}
  </div>
{% endblock %}