no CAS,
[redakcja.git] / apps / wiki / templates / wiki / document_list.html
index 558ef55..f68ba3e 100644 (file)
-{% extends "base.html" %}
-{% load compressed %}
+{% extends "wiki/base.html" %}
 
-{% block extrahead %}
-{% compressed_css 'listing' %}
-{% endblock extrahead %}
+{% load i18n %}
+{% load pagination_tags %}
+{% load wiki %}
 
 {% block extrabody %}
-{% compressed_js 'listing' %}
+{{ block.super }}
 <script type="text/javascript" charset="utf-8">
 $(function() {
        function search(event) {
         event.preventDefault();
-        
         var expr = new RegExp(slugify($('#file-list-filter').val()), 'i');
-       
         $('#file-list tbody tr').hide().filter(function(index) {
-            console.log(expr.test($(this).attr('title')))
-            return expr.test(slugify($('a', this).html()));
+            return expr.test(slugify( $('a', this).attr('data-id') ));
         }).show();
     }
-       
+
     $('#file-list-find-button').click(search).hide();
        $('#file-list-filter').bind('keyup change DOMAttrModified', search);
 });
 </script>
 {% endblock %}
 
-{% block maincontent %}
-<h1><img src="{{STATIC_URL}}/img/logo.png">Platforma Redakcyjna</h1>
+{% block leftcolumn %}
+       <form method="get" action="#">
+    <table>
+       <thead>
+               <tr><th>Filtr:</th>
+                       <th><input autocomplete="off" name="filter" id="file-list-filter" type="text" size="40" /></th>
+                       <th><input type="reset" value="{% trans "Clear filter" %}" id="file-list-reset-button"/></th>
+                       </tr>
+               </thead>
+               <tbody>
+               </tbody>
+    </table>
+       </form>
+
+
 
-<div id="document-list">        
+       <form method="get" action="#">
     <table id="file-list">
-       <thead><tr><th colspan="2">
-       <form action="#" method="GET">
-       Filtr: <input autocomplete="off" name="filter" id="file-list-filter" type="text" size="60" />
-               <input type="submit" value="Znajdź" id="file-list-find-button"/>
-               <input type="reset" value="Wyczyść" id="file-list-reset-button"/>
-       
-       </form>
-               </th></tr></thead>              
                <tbody>
-       {% for file in document_list %}
-            <tr>
-               <td><a target="_blank" href="{% url wiki.views.document_detail file|urlencode %}">{{ file }}</a></td>
-                               <td><!-- placeholder --></td>
-                       </tr>
+        {% autopaginate books 100 %}
+        {% if not books %}
+            <tr><td>{% trans "No books found." %}</td></tr>
+        {% endif %}
+       {% for item in books %}
+            {% with item.book as book %}
+
+            {% ifequal item.book_length 1 %}
+                {% with item.chunks.0 as chunk %}
+                <tr>
+                    <td><a target="_blank" href="{% url wiki_book book.slug %}">[B]</a></td>
+                    <td><a href="{% url wiki_chunk_edit book.slug chunk.slug %}">[c]</a></td>
+                    <td><a target="_blank"
+                                href="{% url wiki_editor book.slug %}">
+                                {{ book.title }}</a></td>
+                    <td>({{ chunk.stage }})</td>
+                    <td>{% if chunk.user %}<a href="{% url wiki_user chunk.user.username %}">{{ chunk.user.first_name }} {{ chunk.user.last_name }}</a>{% endif %}</td>
+                </tr>
+                {% endwith %}
+            {% else %}
+                <tr>
+                    <td><a target="_blank" href="{% url wiki_book book.slug %}">[B]</a></td>
+                    <td></td>
+                    <td>{{ book.title }}</td>
+                </tr>
+                {% for chunk in item.chunks %}
+                    <tr>
+                        <td></td>
+                        <td><a href="{% url wiki_chunk_edit book.slug chunk.slug %}">[c]</a></td>
+                        <td><a target="_blank" href="{{ chunk.get_absolute_url }}">
+                                <span class='chunkno'>{{ chunk.number }}.</span>
+                                {{ chunk.comment }}</a></td>
+                        <td>({{ chunk.stage }})</td>
+                        <td>{% if chunk.user %}<a href="{% url wiki_user chunk.user.username %}">{{ chunk.user.first_name }} {{ chunk.user.last_name }}</a>{% endif %}</td>
+                    </td></tr>
+                {% endfor %}
+            {% endifequal %}
+            {% endwith %}
        {% endfor %}
+        <tr><td colspan="3">{% paginate %}</td></tr>
                </tbody>
     </table>
-       
+       </form>
+{% endblock leftcolumn %}
+
+{% block rightcolumn %}
        <div id="last-edited-list">
-               <h2>Twoje ostatnio otwierane dokumenty:</h2>
-               <ol>
-                       {% for   name, date in last_docs %}
-                       <li><a href="{% url wiki.views.document_detail name|urlencode %}"
-                               target="_blank">{{ name }}</a><br/><span class="date">({{ date|date:"H:i:s, d/m/Y" }})</span></li>
-                       {% endfor %}                    
+               <h2>{% trans "Your last edited documents" %}</h2>
+           <ol>
+                       {% for slugs, item in last_books %}
+                       <li><a href="{% url wiki_editor slugs.0 slugs.1 %}"
+                               target="_blank">{{ item.title }}</a><br/><span class="date">({{ item.time|date:"H:i:s, d/m/Y" }})</span></li>
+                       {% endfor %}
                </ol>
        </div>
-</div>
 
-</div>
-{% endblock maincontent %}
+    <h2>{% trans "Recent activity" %}</h2>
+    {% wall %}
+{% endblock rightcolumn %}