Blame view

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