Blame view

history/templates/history_view.html 1.04 KB
janek37 authored
1
{% extends "base.html" %}
janek37 authored
2
{% load format_date pagination_tags version_static i18n %}
janek37 authored
3
4

{% block extrahead %}
janek37 authored
5
    <link rel="stylesheet" type="text/css"
janek37 authored
6
          href="{% version_static 'css/history.css' %}"/>
janek37 authored
7
    <link rel="stylesheet" type="text/css"
janek37 authored
8
          href="{% version_static 'css/paginer.css' %}"/>
janek37 authored
9
    <script type="text/javascript"
janek37 authored
10
            src="{% version_static 'js/history-view.js' %}"></script>
janek37 authored
11
12
{% endblock %}
janek37 authored
13
{% block title %}{% trans 'History' %}{% endblock %}
janek37 authored
14
15

{% block content %}
janek37 authored
16
    <h3>{% trans 'Change history' %}</h3>
janek37 authored
17
18
    <div class="tabs">
        <ul>
janek37 authored
19
20
            <li><a href="#lexeme_items">{% trans 'Lexemes' %}</a></li>
            <li><a href="#pattern_items">{% trans 'Patterns' %}</a></li>
janek37 authored
21
22
23
24
25
        </ul>
        <div id="lexeme_items">
            {% paginated_list_panel "lexeme_items" %}
            {% paginated_list "lexeme_items" %}
        </div>
janek37 authored
26
27
28
29
        <div id="pattern_items">
            {% paginated_list_panel "pattern_items" %}
            {% paginated_list "pattern_items" %}
        </div>
janek37 authored
30
31
    </div>
{% endblock %}