1 2 3 4 5 6
{% extends "base.html" %} {% load format_date pagination_tags %} {% block extrahead %} <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/lexeme_view.css"/> <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/paginer.css"/>
7
<script type="text/javascript" src="{{ MEDIA_URL }}js/history-view.js"></script>
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
{% endblock %} {% block title %}Historia{% endblock %} {% block content %} <h3>Historia zmian</h3> <div class="tabs"> <ul> <li><a href="#lexeme_items">Leksemy</a></li> </ul> <div id="lexeme_items"> {% paginated_list_panel "lexeme_items" %} {% paginated_list "lexeme_items" %} </div> </div> {% endblock %}