entries.html
3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{% extends "base.html" %}
{% load i18n %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}Hasła{% endblock %}
{% block styles %}
<!-- for autocomplete -->
<link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<!--link rel="stylesheet" type="text/css" href="{% static 'entries/css/panels.css' %}"-->
<link rel="stylesheet" type="text/css" href="{% static 'entries/css/entries.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'common/css/role_colours.css' %}">
{% endblock %}
{% block scripts %}
<script src="{% static 'common/js/csrf.js' %}"></script>
<!--script src="{% static 'entries/js/panels.js' %}"></script-->
<script src="{% static 'entries/js/entries.js' %}"></script>
{% endblock %}
{% block content %}
<!--TODO remove or remodel status and warning-->
<!--div class="card info bg-dark border-0" id="status">
<div class="card-body"></div>
</div>
<div class="card info" id="warning">
<div class="card-body bg-warning"></div>
</div-->
<div class="row h-100">
<!-- left panel: list of entries -->
<div id="entries-list" class="col-2 h-100 px-0 overflow-auto border-right border-primary">
<button type="button" id='filter-button' class="btn btn-primary" data-toggle="modal" data-target="#entry-filters">
{% trans "Filtrowanie" %}
</button>
{% include "entries_list.html" %}
</div>
<!-- right panel: entry display (syntax, semantics, examples) -->
<div class="col h-100">
<div id="entry-display" class="container-fluid h-75 overflow-auto">
{% include "entry_display.html" %}
</div>
<div id="examples-display" class="row h-25 overflow-auto border-top border-primary">
<table id="examples-table" class="table table-sm table-hover table-responsive">
<thead>
<tr>
<th scope="col">{% trans "Przykład" %}</th>
<th scope="col">{% trans "Źródło" %}</th>
<th scope="col">{% trans "Opinia" %}</th>
</tr>
</thead>
<tbody id="examples-list">
</tbody>
</table>
</div>
</div>
</div>
<div class="modal fade" id="entry-filters" tabindex="-1" role="dialog" aria-labelledby="entry-filtersLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="entry-filtersLabel">{% trans "Filtrowanie haseł" %}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
{% crispy entries_form %}
</div>
<!--div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div-->
</div>
</div>
</div>
{% endblock %}