25b4cf2760880276021a636bd78df04e62ab4d2a
[redakcja.git] / apps / wiki / templates / wiki / document_list.html
1 {% extends "wiki/base.html" %}
2
3 {% load i18n %}
4
5 {% block extrabody %}
6 {{ block.super }}
7 <script type="text/javascript" charset="utf-8">
8 $(function() {
9         function search(event) {
10         event.preventDefault();
11         var expr = new RegExp(slugify($('#file-list-filter').val()), 'i');
12         $('#file-list tbody tr').hide().filter(function(index) {
13             return expr.test(slugify( $('a', this).attr('data-id') ));
14         }).show();
15     }
16
17     $('#file-list-find-button').click(search).hide();
18         $('#file-list-filter').bind('keyup change DOMAttrModified', search);
19 });
20 </script>
21 {% endblock %}
22
23 {% block leftcolumn %}
24         <form method="get" action="#">
25     <table  id="file-list">
26         <thead>
27                 <tr><th>Filtr:</th>
28                         <th><input autocomplete="off" name="filter" id="file-list-filter" type="text" size="40" /></th>
29                         <th><input type="reset" value="{% trans "Clear filter" %}" id="file-list-reset-button"/></th>
30                         </tr>
31                 </thead>
32                 <tbody>
33         {% for book in books %}
34             {{ book.list_html }}
35         {% endfor %}
36                 </tbody>
37     </table>
38         </form>
39 {% endblock leftcolumn %}
40
41 {% block rightcolumn %}
42         <div id="last-edited-list">
43                 <h2>{% trans "Your last edited documents" %}</h2>
44             <ol>
45                         {% for slugs, item in last_books %}
46                         <li><a href="{% url wiki_editor slugs.0 slugs.1 %}"
47                                 target="_blank">{{ item.title }}</a><br/><span class="date">({{ item.time|date:"H:i:s, d/m/Y" }})</span></li>
48                         {% endfor %}
49                 </ol>
50         </div>
51 {% endblock rightcolumn %}