Update new Calender in Admin

git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3451 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-08-21 14:39:31 +00:00
parent 7117fc6201
commit a5eb342bd3
35 changed files with 5301 additions and 265 deletions

View file

@ -17,11 +17,22 @@
{%- endblock %}
{% block date_widget -%}
{% set range = 0 %}
{% for attrname, attrvalue in attr %}
{% if attrname == 'data-range' %}
{% set range = 1 %}
{% endif %}
{% endfor %}
{% if range == 1 -%}
{{- parent() -}}
{%- else -%}
{% set attr = attr|merge({class: (attr.class|default('') ~ ' datepicker')|trim}) -%}
<div class="input-group">
<div class="input-group">
{{ parent() -}}
<label for="{{ id }}" class="input-group-addon"><i class="fa fa-calendar"></i></label>
</div>
{%- endif -%}
{%- endblock %}
{% block st_plain_date_widget -%}