-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform-field-month.html
More file actions
20 lines (20 loc) · 904 Bytes
/
form-field-month.html
File metadata and controls
20 lines (20 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- <pat-form-field-month> -->
<label
{% include patterns/form-field-auto-save-attributes %}
class="
{% include patterns/form-field-auto-save-classes %}
{% if include.depends %}pat-depends{% endif %}"
{% if include.depends %}data-pat-depends="{{ include.depends }}; transition: slide"{% endif %}>
{% include patterns/form-field-label-conditional.html %}
<input
name="{{ include.name }}"
type="month"
placeholder="{{ site.data[ui_data_path].ui[include.placeholder][site.data.config.lang] }}"
value="{{ include.value }}" />
{% if include.help %}
{% include patterns/form-help.html
content=include.help more=include.help_more %}
{% endif %}
{% include patterns/form-has-changes.html %}
</label>
<!-- </pat-form-field-month> -->