Wydzielenie kodu jQuery obsługującego automatyczne ładowanie obrazków do biblioteki...
[redakcja.git] / project / templates / explorer / file_html.html
1 {% extends "base.html" %}
2
3 {% block extrahead %}
4     <script src="/static/js/jquery.lazyload.js" type="text/javascript" charset="utf-8"></script>
5     <script type="text/javascript" charset="utf-8">        
6         $(function() {
7             $('#id_folders').change(function() {
8                 $('#images').load('/images/' + $('#id_folders').val() + '/', function() {
9                     $('#images').data('lastScroll', -1000);
10                 });
11             });
12             
13             $('#images').lazyload('.image-box', {threshold: 600});
14         });
15     </script>
16 {% endblock extrahead %}
17
18 {% block breadcrumbs %}<a href="/">Platforma Redakcyjna</a> ❯ plik {{ hash }}{% endblock breadcrumbs %}
19
20 {% block maincontent %}
21     <div id="tabs"><a href="{% url file_xml hash %}">Źródło</a><a href="{% url file_html hash %}" class="active">HTML</a><div style="padding: 3px; margin-left: 10px">{{ image_folders_form.folders }}</div><div style="clear: both; height: 0; width: 0">&nbsp;</div></div>    
22
23     <div id="images">
24         <p>Aby zobaczyć obrazki wybierz folder z obrazkami powyżej.</p>
25     </div>
26     <div id="file-text">
27     {{ object|safe }}
28     </div>
29 {% endblock maincontent %}