4 lines
174 B
HTML
4 lines
174 B
HTML
{% for cl in form.client.field.queryset %}
|
|
<input type="hidden" name="client" value="{{ cl.id }}" >
|
|
<h1> {{ cl.first_name }} {{ cl.last_name }} </h1>
|
|
{% endfor %} <br> |