Blame view

dictionary/templates/prompter_list.html 614 Bytes
janek37 authored
1
{% for lip, cvs, prefix, suffix in lips %}
janek37 authored
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    <tr class="prompter-row">
        <td class="entry">{{ prefix }}<span class="suffix">{{ suffix }}</span>
        </td>
        <td class="ic">{{ lip.inflection_characteristic.symbol }}</td>
        <td class="ic-id">{{ lip.inflection_characteristic.pk }}</td>
        <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
18
{% endfor %}