6 lines
122 B
HTML
6 lines
122 B
HTML
{% for customer in names %}
|
|
<li>{{ customer }}</li>
|
|
{% empty %}
|
|
<li>Sorry, no matches for this customer</li>
|
|
{% endfor %}
|