Blame view

dictionary/templates/history_view.html 762 Bytes
janek37 authored
1
2
3
4
{% extends "base.html" %}
{% load format_date pagination_tags %}

{% block extrahead %}
janek37 authored
5
6
7
8
9
10
    <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"/>
    <script type="text/javascript"
            src="{{ MEDIA_URL }}js/history-view.js"></script>
janek37 authored
11
12
13
14
15
{% endblock %}

{% block title %}Historia{% endblock %}

{% block content %}
janek37 authored
16
17
18
19
20
21
22
23
24
    <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>
janek37 authored
25
26
    </div>
{% endblock %}