2016-05-05 08:39:36 +01:00
|
|
|
{% macro file_upload(field, button_text="Choose file", alternate_link=None, alternate_link_text=None) %}
|
2016-03-07 18:47:05 +00:00
|
|
|
<form method="post" enctype="multipart/form-data" class="{% if field.errors %}error{% endif %}" data-module="file-upload">
|
2016-02-02 17:28:30 +00:00
|
|
|
<label class="file-upload-label" for="{{ field.name }}">
|
2016-02-22 12:16:19 +00:00
|
|
|
<span class="visually-hidden">{{ field.label }}</span>
|
2016-02-02 17:28:30 +00:00
|
|
|
{% if hint %}
|
|
|
|
|
<span class="form-hint">
|
|
|
|
|
{{ hint }}
|
|
|
|
|
</span>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if field.errors %}
|
|
|
|
|
<span class="error-message">
|
|
|
|
|
{{ field.errors[0] }}
|
|
|
|
|
</span>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</label>
|
|
|
|
|
{{ field(**{
|
|
|
|
|
'class': 'file-upload-field'
|
|
|
|
|
}) }}
|
|
|
|
|
<label class="file-upload-button" for="{{ field.name }}">
|
2016-02-04 12:20:24 +00:00
|
|
|
{{ button_text }}
|
2016-02-02 17:28:30 +00:00
|
|
|
</label>
|
2016-05-05 08:39:36 +01:00
|
|
|
{% if alternate_link and alternate_link_text %}
|
|
|
|
|
<span class="file-upload-alternate-link">
|
|
|
|
|
or <a href="{{ alternate_link }}">{{ alternate_link_text }}</a>
|
|
|
|
|
</span>
|
|
|
|
|
{% endif %}
|
2016-02-02 17:28:30 +00:00
|
|
|
<label class="file-upload-filename" for="{{ field.name }}"></label>
|
2016-02-22 21:37:32 +00:00
|
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
|
|
|
<input type="submit" class="file-upload-submit" value="Submit" />
|
|
|
|
|
</form>
|
2016-02-02 17:28:30 +00:00
|
|
|
{% endmacro %}
|