2 {% load pagination_tags %}
3 {% load document_short_html from document_list %}
5 <table class="table table-striped">
6 {% autopaginate books 100 %}
8 <th>{% trans "Title" %}</th>
9 <th>{% trans "Owner" %}</th>
10 <th>{% trans "Stage" %}</th>
11 <th>{% trans "Assigned to" %}</th>
12 <th>{% trans "Deadline" %}</th>
16 {% for doc in books %}
17 {% document_short_html doc %}
19 <tr><th class='paginator' colspan="5">
25 <p>{% trans "No resources found." %}</p>
28 <select name="other-user" style="display:none;">
29 {% for user in other_users %}
30 <option {% if request.GET.user == user.username %}selected="selected"
31 {% endif %}value="{{ user.username }}">{{ user.first_name }} {{ user.last_name }} ({{ user.count }})</option>