prompter_list.html 682 Bytes
{% for inflection, cvs, prefix, suffix in inflections %}
    <tr class="prompter-row">
        <td class="entry">{{ prefix }}<span class="suffix">{{ suffix }}</span>
        </td>
        {% if inflection.gender %}
            <td class="gender">{{ inflection.gender.symbol }}</td>
            <td class="gender-id">{{ inflection.gender_id }}</td>
        {% endif %}
        <td class="cv">
            <ul>
                {% for cv in cvs %}
                    <li>
                        {{ cv.label }}
                    </li>
                {% endfor %}
            </ul>
        </td>
        <td class="pattern">{{ inflection.pattern.name }}</td>
    </tr>
{% endfor %}