X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/f7833f76b5f9555b0d95d23d47fc886a3528a335..ff3307b0e2141ac2d1c781ada9c42ad63e2bfd29:/wolnelektury/templates/lessons/document_list.html?ds=inline diff --git a/wolnelektury/templates/lessons/document_list.html b/wolnelektury/templates/lessons/document_list.html index 1a5ab01d4..2f1c848b2 100644 --- a/wolnelektury/templates/lessons/document_list.html +++ b/wolnelektury/templates/lessons/document_list.html @@ -1,24 +1,25 @@ {% extends "base.html" %} +{% load i18n %} {% load catalogue_tags chunks %} {% block bodyid %}document-list-body{% endblock %} -{% block title %}MateriaÅy pomocnicze dla nauczycieli w WolneLektury.pl{% endblock %} +{% block title %}{% trans "Hand-outs for teachers on " %}WolneLektury.pl{% endblock %} {% block extrahead %} <script type="text/javascript" charset="utf-8"> $(function() { - $('#document-list a').click(function() { + $('#document-list a[data-hash]').click(function() { if (!$(this).hasClass('active')) { - $('#document-list a').removeClass('active'); + $('#document-list a[data-hash]').removeClass('active'); $(this).addClass('active'); document.location.hash = $(this).attr('data-hash'); } return false; }); - + var lastHash = null; - + function checkHash() { if (document.location.hash != lastHash) { lastHash = document.location.hash; @@ -27,7 +28,7 @@ $('#document-list a').removeClass('active'); documentLink.addClass('active'); }; - + if ($('#document-detail').attr('data-hash') != lastHash) { $('#document-detail') .attr('data-hash', lastHash) @@ -36,28 +37,23 @@ } else if (!document.location.hash) { $('#document-list a:first').click(); } - + setTimeout(checkHash, 500); }; - + checkHash(); }); </script> {% endblock extrahead %} {% block body %} - <h1>MateriaÅy pomocnicze dla nauczycieli</h1> + <h1>{% trans "Hand-outs for teachers" %}</h1> <form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form"> - <p>{{ form.q }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url main_page %}">wrÃ³Ä do strony gÅównej</a></p> + <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p> </form> - + <div id="document-list"> - <ol> - {% for object in object_list %} - <li><a href="{{ object.get_absolute_url }}" data-hash="#{{ object.slug }}">{{ object }}</a></li> - {% endfor %} - </ol> + {% chunk "document-list" %} </div> <div id="document-detail"> </div> {% endblock %} - \ No newline at end of file