horizon/horizon/templates/horizon/common/_page_header.html

13 lines
295 B
HTML

{% 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 %}