Blame view

paginer/templates/field_form.html 242 Bytes
janek37 authored
1
2
<span class="dynamic-field">
  <select name="lookup" class="lookup-choice">
janek37 authored
3
4
5
      {% for value, label in lookup_choices %}
          <option value="{{ value }}">{{ label }}</option>
      {% endfor %}
janek37 authored
6
7
8
  </select>
  {{ form.as_table }}
</span>