X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/662a8a111721df714e9c95f94db91d2d03d7b19d..985ca3a21df2340caa545f27e5f01fd1eb87c9c8:/apps/wiki/templates/wiki/document_list.html diff --git a/apps/wiki/templates/wiki/document_list.html b/apps/wiki/templates/wiki/document_list.html index 1b0662b3..f808a1d3 100644 --- a/apps/wiki/templates/wiki/document_list.html +++ b/apps/wiki/templates/wiki/document_list.html @@ -1,57 +1,72 @@ -{% extends "base.html" %} -{% load compressed %} +{% extends "wiki/base.html" %} -{% block extrahead %} -{% compressed_css 'listing' %} -{% endblock extrahead %} +{% load i18n %} {% block extrabody %} -{% compressed_js 'listing' %} +{{ block.super }} {% endblock %} -{% block maincontent %} -

Platforma Redakcyjna

- -
-
-
-

Filtr: - - -

-
- {% for file in document_list %} -

{{ file }}

+{% block leftcolumn %} +
+ + + + + + + + + {% for book in books %} + + + + {% endfor %} - - + +
Filtr:
+ [?] + {% ifequal book.chunk_set.count 1 %} + + {{ book.title }} + {% else %} + {{ book.title }} +
+ {% for chunk in book %} + + {{ forloop.counter }}. + {{ chunk.comment }}
+ {% endfor %} +
+ {% endifequal %} +
+
+{% endblock leftcolumn %} + +{% block rightcolumn %}
-

Twoje ostatnio otwierane dokumenty:

-
    - {% for name, date in last_docs %} -
  1. {{ name }}
    ({{ date|date:"H:i:s, d/m/Y" }})
  2. - {% endfor %} +

    {% trans "Your last edited documents" %}

    +
      + {% for slugs, item in last_books %} +
    1. {{ item.title }}
      ({{ item.time|date:"H:i:s, d/m/Y" }})
    2. + {% endfor %}
-
- -
-{% endblock maincontent %} +{% endblock rightcolumn %}