1 {% extends "wiki/base.html" %}
7 <script type="text/javascript" charset="utf-8">
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') ));
17 $('#file-list-find-button').click(search).hide();
18 $('#file-list-filter').bind('keyup change DOMAttrModified', search);
23 {% block leftcolumn %}
24 <form method="get" action="#">
25 <table id="file-list">
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>
33 {% for book in books %}
35 <td><a target="_blank" data-id="{{ book.slug }}"
36 href="{% url wiki_book book.slug %}">{{ book.title }}</a>
38 <td class='listitem-tools'>
39 {% ifequal book.chunk_set.count 1 %}
40 <a target="_blank" data-id="{{ book.slug }}"
41 href="{% url wiki_editor book.slug %}">
42 [{% trans "edit" %}]</a>
44 {% for chunk in book.chunk_set.all %}
45 <a target="_blank" data-id="{{ book.slug }}"
46 href="{% url wiki_editor book.slug chunk.slug %}">
47 [<span class='chunkno'>{{ forloop.counter }}.</span>
48 {{ chunk.comment }}</a>]<br/>
52 <!-- placeholder </td> -->
58 {% endblock leftcolumn %}
60 {% block rightcolumn %}
61 <div id="last-edited-list">
62 <h2>{% trans "Your last edited documents" %}</h2>
64 {% for slugs, item in last_books %}
65 <li><a href="{% url wiki_editor slugs.0 slugs.1 %}"
66 target="_blank">{{ item.title }}</a><br/><span class="date">({{ item.time|date:"H:i:s, d/m/Y" }})</span></li>
70 {% endblock rightcolumn %}