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