X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/c52436a7e25876ee3509df2467c2a9ef33303436..refs/heads/backend-rewrite:/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 a47609ae..ec4116e5 100644 --- a/apps/wiki/templates/wiki/document_list.html +++ b/apps/wiki/templates/wiki/document_list.html @@ -1,19 +1,17 @@ -{% extends "base.html" %} -{% load compressed %} +{% extends "wiki/base.html" %} -{% block extrahead %} -{% compressed_css 'listing' %} -{% endblock extrahead %} +{% load i18n %} +{% load wiki %} {% block extrabody %} -{% compressed_js 'listing' %} +{{ block.super }} {% endblock %} -{% block maincontent %} -

Platforma Redakcyjna

- - -
+{% block leftcolumn %}
- + - {% for file in document_list %} + {% for doc in docs %} - + {% endfor %}
Filtr:
{{ file }}{{ doc }}
+{% 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. +

    {% trans "Your last edited documents" %}

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