Blame view

dictionary/templates/reports.html 600 Bytes
janek37 authored
1
2
3
4
5
{% extends "base.html" %}

{% block title %}Raporty{% endblock %}

{% block content %}
janek37 authored
6
7
8
    <p>
        Tu będą różnorodne zestawienia pokazujące stan opracowywanego słownika.
    </p>
janek37 authored
9
10
11
12
    {% for header, list in report_lists.iteritems %}
        <h3>{{ header }}</h3>
        <ul>
            {% for l in list %}
janek37 authored
13
14
15
16
                <li>
                    {{ l.entry }}
                    {{ l.part_of_speech_id }}
                    {{ l.owner_vocabulary_id }}
janek37 authored
17
                    {{ l.status_desc }}
janek37 authored
18
                </li>
janek37 authored
19
20
21
            {% endfor %}
        </ul>
    {% endfor %}
janek37 authored
22
{% endblock %}