X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/198be737937aec7259e81ba791bf7f4e401795eb..0f84fb864cfe3f6c642706f40933ede6a74fe0c4:/apps/wiki/templates/wiki/document_details.html diff --git a/apps/wiki/templates/wiki/document_details.html b/apps/wiki/templates/wiki/document_details.html index 1362a806..2211c0a3 100644 --- a/apps/wiki/templates/wiki/document_details.html +++ b/apps/wiki/templates/wiki/document_details.html @@ -1,86 +1,50 @@ -{% extends "base.html" %} -{% load toolbar_tags %} +{% extends "wiki/document_details_base.html" %} +{% load i18n %} -{% block extrahead %} - - - - - - - - - - - +{% block extrabody %} +{{ block.super }} + + {% endblock %} -{% block maincontent %} -
-

Ładowanie

-
- - -
-
-
- {% toolbar %} - - - - - -
- -
-
- -
- -{% endblock %} \ No newline at end of file +{% block tabs-menu %} + {% include "wiki/tabs/summary_view_item.html" %} + {% include "wiki/tabs/wysiwyg_editor_item.html" %} + {% include "wiki/tabs/source_editor_item.html" %} + {% include "wiki/tabs/history_view_item.html" %} +{% endblock %} + +{% block tabs-content %} + {% include "wiki/tabs/summary_view.html" %} + {% include "wiki/tabs/wysiwyg_editor.html" %} + {% include "wiki/tabs/source_editor.html" %} + {% include "wiki/tabs/history_view.html" %} +{% endblock %} + +{% block tabs-right %} + {% include "wiki/tabs/gallery_view_item.html" %} + {% include "wiki/tabs/annotations_view_item.html" %} + {% include "wiki/tabs/search_view_item.html" %} +{% endblock %} + +{% block splitter-extra %} +
+

+
+ +
+{% endblock %} + +{% block dialogs %} + {% include "wiki/save_dialog.html" %} + {% include "wiki/revert_dialog.html" %} + {% include "wiki/tag_dialog.html" %} + {% if can_pubmark %} + {% include "wiki/pubmark_dialog.html" %} + {% endif %} +{% endblock %}