UNPKG

1.5 kBHTMLView Raw
1{% extends 'baseModal.html' %}
2{% include 'uiMacros.html' %}
3{% include 'snippets:snippetMacros.html' %}
4
5{% block modalClass %}
6 {{ browseTrashClass }} apos-ui-modal-no-sidebar
7{% endblock %}
8
9{% block modalLabel %}
10 {{ __('Browse Trash: %s', __(pluralLabel) | e ) }}
11{% endblock %}
12
13{% block modalFilters %}
14 <div class="apos-ui-modal-filters-inner">
15 {{ snippetSearchFilter() }}
16 </div>
17
18 {# <div class="apos-modal-filters">
19 {{ __('Search') }}: <input type="text" name="search" /> <input type="submit" data-search-submit class="apos-search-submit" value="{{ __('Go') }}" /> <a href="#" class="apos-remove-search" data-remove-search>x</a>
20 </div> #}
21{% endblock %}
22
23{% block modalControls %}
24 {{ renderProgressBtn({dataAttrs: 'data-cancel', float: 'left', label: 'Done', arrow: 'left'}) }}
25{% endblock %}
26
27
28{# <div class="apos-modal apos-template {{ browseTrashClass }}"> #}
29 {# <h3>{% block action %}{{ __('Browse Trash: %s', __(pluralLabel) | e ) }}{% endblock %}</h3> #}
30 {# <div class="apos-modal-body"> #}
31{% block modalBody %}
32 <table data-items class="apos-manage-table">
33 <tr>
34 <th data-title>{{ __('Title') }}</th>
35 <th data-date>{{ __('Date') }}</th>
36 </tr>
37 <tr class="apos-template" data-item>
38 <td>
39 <span><a href="#" data-title>{{ __('Sample Title') }}</a></span>
40 </td>
41 <td><span data-date></span></td>
42 </tr>
43 </table>
44 {# Container for pager, which gets rendered here by js #}
45 <div data-pager-box></div>
46{% endblock %}