|
1
|
<li class="lip-row ui-state-default ui-corner-all">
|
|
2
3
4
5
6
|
{% if editable %}
<span class="remove ui-icon ui-icon-closethick"></span>
<span class="arrows ui-icon ui-icon-arrowthick-2-n-s"></span>
{% endif %}
{% for field in lip_form %}
|
|
7
|
{% if field.name != 'qualifiers' and field.name != 'pronunciation' %}
|
|
8
|
<span class="lip-field">
|
|
9
10
|
{{ field.label_tag }} {{ field.as_widget }}
</span>
|
|
11
12
13
14
|
{% endif %}
{% endfor %}
{% if editable %}
<button type="button" class="prompter"
|
|
15
|
id="{{ lip_form.prefix }}-prompter">...</button>
|
|
16
|
{% endif %}
|
|
17
18
19
20
21
|
<p>
{% if ro_qualifiers %}
{{ owner.id }}: {{ ro_qualifiers|join:", " }};
{% endif %}
{{ lip_form.qualifiers.label_tag }} {{ lip_form.qualifiers.as_widget }}
|
|
22
|
{{ lip_form.pronunciation.label_tag }} {{ lip_form.pronunciation.as_widget }}
|
|
23
|
</p>
|
|
24
|
</li>
|