Hi,
can I access an image via a form-field in the template?
<p>
{% if field.errors %}
<span class="error">{{ field.errors }}</span>
{% endif %}
{{ field.label_tag }}:<br />
<img src="{{ field.value.url }}" /> {# <- This is what I want to do, I know it doesn't work like this #}
{{ field }}<br />
<span >{{ field.help_text }}</span>
</p>
thanks for your time.