X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/38343a3fc11f5509c8522fec94c0ae7085b7244f..bf77ae4a3e1a3593c2fac8c289f177aec15602c9:/project/templates/explorer/file_xml.html diff --git a/project/templates/explorer/file_xml.html b/project/templates/explorer/file_xml.html index 14ae61ec..1681d9cd 100644 --- a/project/templates/explorer/file_xml.html +++ b/project/templates/explorer/file_xml.html @@ -1,11 +1,40 @@ {% extends "base.html" %} -{% block breadcrumbs %}<a href="/">Platforma Redakcyjna</a> ⯠plik {{ hash }}{% endblock breadcrumbs %} +{% block extrahead %} + <script src="/static/js/jquery.lazyload.js" type="text/javascript" charset="utf-8"></script> + <script src="/static/js/codemirror/codemirror.js" type="text/javascript" charset="utf-8"></script> + <script src="/static/js/jquery.autoscroll.js" type="text/javascript" charset="utf-8"></script> + <script src="/static/js/jquery.wtooltip.js" type="text/javascript" charset="utf-8"></script> +<!-- <script src="/static/js/jquery.resizable.js" type="text/javascript" charset="utf-8"></script> --> + <script src="/static/js/jquery.hpanel.js" type="text/javascript" charset="utf-8"></script> + <script src="/static/js/panels.js" type="text/javascript" charset="utf-8"></script> +{% endblock extrahead %} + +{% block breadcrumbs %}<a href="{% url file_list %}">Platforma Redakcyjna</a> ⯠plik {{ hash }}{% endblock breadcrumbs %} {% block maincontent %} - <div id="tabs"><a href="{% url file_xml hash %}" class="active">ŹródÅo</a><a href="{% url file_html hash %}">HTML</a><div style="clear: both; height: 0; width: 0"> </div></div> - <form action="." method="post" accept-charset="utf-8"> - {{ form }} - <p><input type="submit" value="Zapisz"/></p> - </form> + <div id="panels"> + <div id="left-panel-wrap" class="panel-wrap"> + <div id="left-panel-toolbar" class="panel-toolbar"> + <label for="select-left-panel">Lewy panel:</label> + <select name="select-left-panel" id="select-left-panel"> + <option value="{% url xmleditor_panel hash %}">Edytor XML</option> + <option value="{% url htmleditor_panel hash %}">Edytor HTML</option> + <option value="{% url gallery_panel hash %}">Galeria skanów</option> </select> + </div> + <div id="left-panel-contents" class="panel-contents"></div> + <button class="panel-slider"> </button> + </div> + <div id="right-panel-wrap" class="panel-wrap no-slider"> + <div id="right-panel-toolbar" class="panel-toolbar"> + <label for="select-right-panel">Prawy panel:</label> + <select name="select-right-panel" id="select-right-panel"> + <option value="{% url xmleditor_panel hash %}">Edytor XML</option> + <option value="{% url htmleditor_panel hash %}">Edytor HTML</option> + <option value="{% url gallery_panel hash %}">Galeria skanów</option> + </select> + </div> + <div id="right-panel-contents" class="panel-contents"></div> + </div> + </div> {% endblock maincontent %}