Skip to content

Commit cd4027b

Browse files
authored
Merge pull request #26 from michaelmarziani/master
Update 2 occurrences of field.name to field.html_name
2 parents d7db019 + 6d8fb8e commit cd4027b

File tree

1 file changed

+2
-2
lines changed
  • materializecssform/templates/materializecssform

1 file changed

+2
-2
lines changed

materializecssform/templates/materializecssform/field.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
{% if classes.icon %}
7474
<i class="material-icons prefix">{{ classes.icon }}</i>
7575
{% endif %}
76-
<select multiple name="{{ field.name }}">
76+
<select multiple name="{{ field.html_name }}">
7777
{% for choice in field %}
7878
{{ choice.tag }}
7979
{% endfor %}
@@ -96,7 +96,7 @@
9696
{% if classes.icon %}
9797
<i class="material-icons prefix">{{ classes.icon }}</i>
9898
{% endif %}
99-
<select name="{{ field.name }}">
99+
<select name="{{ field.html_name }}">
100100
{% for choice in field %}
101101
{{ choice.tag }}
102102
{% endfor %}

0 commit comments

Comments
 (0)