Publication button works, but need better error messages.
[redakcja.git] / apps / wiki / templates / wiki / base.html
diff --git a/apps/wiki/templates/wiki/base.html b/apps/wiki/templates/wiki/base.html
new file mode 100644 (file)
index 0000000..5680e0d
--- /dev/null
@@ -0,0 +1,24 @@
+{% extends "base.html" %}
+{% load compressed %}
+
+{% block title %}{{ document_name }} - {{ block.super }}{% endblock %}
+
+{% block extrahead %}
+{% compressed_css 'listing' %}
+{% endblock %}
+
+{% block extrabody %}
+{% compressed_js 'listing' %}
+{% endblock %}
+
+{% block maincontent %}
+<h1><img src="{{STATIC_URL}}/img/logo.png">Platforma Redakcyjna</h1>
+<div id="wiki_layout_left_column">
+       {% block leftcolumn %}
+       {% endblock leftcolumn %}
+</div>
+<div id="wiki_layout_right_column">
+       {% block rightcolumn %} 
+       {% endblock rightcolumn %}
+</div>
+{% endblock maincontent %}
\ No newline at end of file