Blame view

dictionary/templates/prompter_list.html 682 Bytes
janek@kublik authored
1
{% for inflection, cvs, prefix, suffix in inflections %}
janek37 authored
2
3
4
    <tr class="prompter-row">
        <td class="entry">{{ prefix }}<span class="suffix">{{ suffix }}</span>
        </td>
janek@kublik authored
5
6
7
        {% if inflection.gender %}
            <td class="gender">{{ inflection.gender.symbol }}</td>
            <td class="gender-id">{{ inflection.gender_id }}</td>
janek37 authored
8
        {% endif %}
janek37 authored
9
10
11
12
13
14
15
16
17
        <td class="cv">
            <ul>
                {% for cv in cvs %}
                    <li>
                        {{ cv.label }}
                    </li>
                {% endfor %}
            </ul>
        </td>
janek@kublik authored
18
        <td class="pattern">{{ inflection.pattern.name }}</td>
janek37 authored
19
    </tr>
janek37 authored
20
{% endfor %}