Blame view

dictionary/templates/history_view.html 684 Bytes
janek37 authored
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"/>
janek37 authored
7
  <script type="text/javascript" src="{{ MEDIA_URL }}js/history-view.js"></script>
janek37 authored
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 %}