27 lines
706 B
HTML
27 lines
706 B
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %}{{ title or (_("{0} List").format(_(doctype))) }}{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1>{{ title or (_("{0} List").format(_(doctype))) }}</h1>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
{% endblock %}
|
|
|
|
{% block header_actions %}
|
|
{% if create_new %}
|
|
<div class="pull-right">
|
|
<a href="{{ create_new | abs_url }}" class="btn btn-primary btn-sm">
|
|
{{ _("New") }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block page_content %}{% include "templates/includes/list/list.html" %}{% endblock %}
|
|
|
|
{% block script %}
|
|
<script>{% include "templates/includes/list/list.js" %}</script>
|
|
{% endblock %}
|