Blame view

patterns/templates/pattern_reader_view.html 1.31 KB
janek37 authored
1
{% extends "reader_slickgrid.html" %}
janek37 authored
2
{% load i18n version_static %}
janek37 authored
3
4

{% block extrahead %}
janek37 authored
5
    {{ block.super }}
janek37 authored
6
    <link rel="stylesheet" type="text/css"
janek37 authored
7
          href="{% version_static 'css/pattern_view.css' %}"/>
janek37 authored
8
    <script type="text/javascript"
janek37 authored
9
            src="{% version_static 'js/pattern-view.js' %}"></script>
janek37 authored
10
    <script type="text/javascript"
janek37 authored
11
            src="{% version_static 'js/pattern-reader-view.js' %}"></script>
janek37 authored
12
13
{% endblock %}
janek37 authored
14
{% block title %}{% trans 'Pattern view' %}{% endblock %}
janek37 authored
15
janek37 authored
16
17
18
19
{% block header %}
    {{ block.super }}
    <div id="search-panel">
        <input type="text" id="text-search"/>
janek37 authored
20
        <img id="search-button" title="{% trans 'search' %}" src="{% version_static 'images/tick.png' %}"/>
janek37 authored
21
22
    </div>
    <img id="filter-button" class="menu-button"
janek37 authored
23
         title="{% trans 'filter' %}" src="{% version_static 'images/filter.png' %}"/>
janek37 authored
24
25
{% endblock %}
janek37 authored
26
{% block settings-menu %}
janek37 authored
27
    <p id="show-columns-button" class="item">{% trans "pattern list…" %}</p>
janek37 authored
28
29
30
31
    <p id="columns" class="subitem"></p>
{% endblock %}
janek37 authored
32
33
34
35
36
{% block content %}
    <div id="left">
        <div id="pattern-grid"></div>
    </div>
    <div id="right">
janek37 authored
37
        <div id="preview"></div>
janek37 authored
38
39
40
41
    </div>
{% endblock %}

{% block modal_elements %}
janek37 authored
42
    {{ block.super }}
janek37 authored
43
    {% include "slickgrid_modal_elements.html" %}
janek37 authored
44
{% endblock %}