Blame view

dictionary/templates/reader_view.html 2.28 KB
janek37 authored
1
{% extends "reader_slickgrid.html" %}
janek37 authored
2
{% load i18n version_static %}
janek37 authored
3
janek37 authored
4
5
6
{% block extrahead %}
    {{ block.super }}
    <link rel="stylesheet" type="text/css"
janek37 authored
7
          href="{% version_static 'css/lexeme_view.css' %}"/>
janek37 authored
8
    <link rel="stylesheet" type="text/css"
janek37 authored
9
          href="{% version_static 'css/reader_view.css' %}"/>
janek37 authored
10
    <script type="text/javascript"
janek37 authored
11
            src="{% version_static 'js/lexeme-view.js' %}"></script>
janek37 authored
12
    <script type="text/javascript"
janek37 authored
13
            src="{% version_static 'js/reader-view.js' %}"></script>
janek37 authored
14
15
{% endblock %}
janek37 authored
16
{% block title %}{% trans 'Grammatical Dictionary of Polish' %}{% endblock %}
janek37 authored
17
janek37 authored
18
19
20
21
{% block header %}
    {{ block.super }}
    <div id="search-panel">
        <input type="text" id="text-search"/>
janek37 authored
22
        <img id="search-button" title="{% trans 'search' %}" src="{% version_static 'images/tick.png' %}"/>
janek37 authored
23
    </div>
janek37 authored
24
    <img id="afronte-button" class="menu-button hide-by-form"
janek37 authored
25
         title="{% trans 'a fronte' %}" src="{% version_static 'images/afronte.png' %}"/>
janek37 authored
26
    <img id="atergo-button" class="menu-button hide-by-form"
janek37 authored
27
         title="{% trans 'a tergo' %}" src="{% version_static 'images/atergo.png' %}"/>
janek37 authored
28
    <img id="filter-button" class="menu-button hide-by-form"
janek37 authored
29
         title="{% trans 'filter' %}" src="{% version_static 'images/filter.png' %}"/>
janek37 authored
30
{% endblock %}
janek37 authored
31
janek37 authored
32
{% block settings-menu %}
janek37 authored
33
34
35
36
    <p class="item">{% trans "inflection" %}</p>
    <p class="subitem switch-tab" data-tab="variant1"><span class="ui-icon ui-icon-check"></span>{% trans "all forms" %}</p>
    <p class="subitem switch-tab" data-tab="variant0"><span class="ui-icon ui-icon-check"></span>{% trans "base forms" %}</p>
    <p id="show-columns-button" class="item hide-by-form">{% trans "entry list…" %}</p>
janek37 authored
37
38
39
40
    <p id="columns" class="subitem"></p>
{% endblock %}
janek37 authored
41
42
43
44
45
{% block content %}
    <div id="left">
        <div id="lexeme-grid"></div>
    </div>
    <div id="right">
janek37 authored
46
47
        <div id="variant1"></div>
        <div id="variant0"></div>
janek37 authored
48
49
50
51
    </div>
{% endblock %}

{% block modal_elements %}
janek37 authored
52
    {{ block.super }}
janek37 authored
53
    {% include "slickgrid_modal_elements.html" %}
janek37 authored
54
    <div id="more-actions-dialog" title="{% trans 'Other actions' %}">
janek37 authored
55
        <p><button type="button" id="export-list-button">
janek37 authored
56
            {% trans 'Export the current list' %}
janek37 authored
57
58
        </button></p>
    </div>
janek37 authored
59
{% endblock %}