seitime-frappe/frappe/templates/includes/list/list.html
2015-04-23 15:55:22 -04:00

20 lines
580 B
HTML

<div class="website-list" data-doctype="{{ doctype }}" data-txt="{{ txt or '[notxt]' }}">
<!-- {% if not hide_filters -%}
{% include "templates/includes/list/filters.html" %}
{%- endif %} -->
<div class="result">
{% for item in result %}
{{ item }}
{% endfor %}
{% if not result -%}
<div class="text-muted padding">
{{ no_result_message or _("Nothing to show") }}
</div>
{%- endif %}
</div>
<div class="more-block border-top {% if not show_more -%} hide {%- endif %}">
<button class="btn btn-default btn-more">More</button>
</div>
</div>