summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/common/_detail_header.html
blob: db99156f95a670a39596b887072aa59b35999d43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="page-header detail-header">
  <div class="row">
    <div class="detail-title col-xs-12 col-sm-9">
      <span class="h1 word-wrap">{{ page_title }}</span>
    </div>

    <div class="detail-actions col-xs-12 col-sm-3 text-right">
      {% if actions %}
      <form class="detail-actions-form actions_column" action="{{ url }}" method="POST">
        {% csrf_token %}
        {{ actions }}
      </form>
      {% endif %}
    </div>
  </div>
</div>