Blame view

export/templates/export.html 1.11 KB
janek37 authored
1
{% extends "base.html" %}
janek37 authored
2
{% load version_static i18n %}
janek37 authored
3
4

{% block extrahead %}
janek37 authored
5
    <script type="text/javascript" src="{% version_static 'js/export.js' %}"></script>
janek37 authored
6
7
{% endblock %}
janek37 authored
8
{% block title %}{%  trans 'Define export parameters' %}{% endblock %}
janek37 authored
9
janek37 authored
10
{% block text-content %}
janek37 authored
11
    <h3>{%  trans 'Define lexeme export parameters' %}</h3>
janek37 authored
12
13
    <form method="get" action="" id="export-form">
        {{ form.as_p }}
janek37 authored
14
        {%  trans 'Qualifiers to exclude (empty pattern excluded the whole qualifier)' %}:
janek37 authored
15
16
17
18
        <button type="button" id="add-magic-qualifier-row">
            <span class="ui-icon ui-icon-plus"></span>
        </button>
        <ul id="magic-qualifiers"></ul>
janek37 authored
19
20
        <button type="button" class="save">{%  trans 'Save parameters' %}</button>
        <button type="button" class="load">{%  trans 'Load parameters' %}</button>
janek37 authored
21
        {#<button type="submit">Generuj eksport</button>#}
janek37 authored
22
    </form>
janek37 authored
23
{% endblock %}
janek37 authored
24
25

{% block modal_elements %}
janek37 authored
26
    <div id="load-data-dialog" title="{%  trans 'Choose export parameters' %}">
janek37 authored
27
28
29
        <ul id="data-list" class="load-dialog-list">
        </ul>
    </div>
janek37 authored
30
{% endblock %}