seitime-frappe/frappe/templates/pages/list.html

35 lines
863 B
HTML

{% extends "templates/web.html" %}
{% block title %}{{ title or (_("{0} List").format(_(doctype))) }}{% endblock %}
{% block header %}
{% if default_subtitle %}
<div class="list-hero">
<h1>
{{ default_subtitle }}
</h1>
</div>
{% else %}
<h1>{{ title or (_("{0} List").format(_(doctype))) }}</h1>
{% endif %}
{% 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 %}