Commit a55bb8e39deaec510216f9feb9c15aa0d5c2bcf2
1 parent
a0964a32
Exists in
master
and in
5 other branches
Changing users create date input attr [Issue: #226]
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
users/templates/users/create.html
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 | {% else %} |
39 | 39 | <label for="{{ field.auto_id }}">{{ field.label }}</label> |
40 | 40 | {% endif %} |
41 | - <input type="text" class="form-control input-sm date-picker" name="{{field.name}}" min="{{now|date:'d-m-Y'}}"> | |
41 | + <input type="text" class="form-control input-sm date-picker" name="{{field.name}}" min="{{now|date:'SHORT_DATE_FORMAT'}}"> | |
42 | 42 | |
43 | 43 | {% elif field.auto_id == 'id_image' %} |
44 | 44 | {% if field.field.required %} | ... | ... |