-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform-field-file.html
More file actions
28 lines (28 loc) · 964 Bytes
/
form-field-file.html
File metadata and controls
28 lines (28 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- <pat-form-field-file> -->
<fieldset
{% include patterns/form-field-id %}
{% include patterns/form-field-auto-save-attributes %}
class="
group
{% include patterns/form-field-auto-save-classes %}
pat-form-field-file
group">
<legend>
{%- include patterns/form-field-label-conditional.html -%}
</legend>
<input
name="{{ include.name }}"
type="file"
accept="{{ include.accept }}" />
{% if item.help %}
{% include patterns/form-help.html
content=item.help more=item.help_more %}
{% endif %}
{% include patterns/form-has-changes.html %}
{% if include.help %}
{% include patterns/form-help.html
content=include.help
more=include.help_more %}
{% endif %}
</fieldset>
<!-- </pat-form-field-file> -->