Wyświetlanie komunikatów - Closes #62.
[redakcja.git] / project / templates / explorer / editor.html
index 2d63419..75e62c9 100644 (file)
 {% block breadcrumbs %}<a href="{% url file_list %}">Platforma Redakcyjna</a> ❯ plik {{ hash }}{% endblock breadcrumbs %}
 
 {% block header-toolbar %}
+       <button type="button" class="toolbar-button" id="toolbar-button-commit">Commit</button>
        <button type="button" class="toolbar-button" id="toolbar-button-save" disabled="disabled">Zapisz</button>
 {% endblock %}
+
+{% block message-box %}
+    <div class="msg-success" id="save-successful">Zapisano :)</div>
+    <div class="msg-error" id="save-error">Błąd przy zapisie. <span class="errors" /></div>
+    <div class="msg-warning" id="not-implemented">Tej funkcji jeszcze nie ma :(</div>
+{% endblock %}
+
 {% block maincontent %}
         <div id="panels">
             {% for n in panel_list %}
-            <div class="panel-wrap" id="panel-{{n}}">
+            <div class="panel-wrap{% if forloop.last %} last-panel{% endif %}" id="panel-{{n}}">
                 <div class="panel-toolbar">
-                    <label for="select-left-panel">{{n|capfirst}} panel:</label>
-                    <select name="select-left-panel" id="panel-{{n}}-select">
+                    <label for="select-{{n}}-panel">{{n|capfirst}} panel:</label>
+                    <select name="select-{{n}}-panel" id="panel-{{n}}-select">
                         <option value="{% url xmleditor_panel hash %}" name="xmleditor">Edytor XML</option>
                         <option value="{% url htmleditor_panel hash %}" name="htmleditor">Edytor HTML</option>
                         <option value="{% url gallery_panel hash %}" name="gallery">Galeria skanów</option>