seitime-frappe/frappe/templates/pages/list.html
2015-06-01 17:14:53 +05:30

27 lines
710 B
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 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 content %}{% include "templates/includes/list/list.html" %}{% endblock %}
{% block script %}{% include "templates/includes/list/list.js" %}{% endblock %}