Current section

Files

Jump to
zotonic_mod_admin priv templates _edit_date.tpl
Raw

priv/templates/_edit_date.tpl

{% if is_editable %}
<input
type="text"
name="dt:ymd:{{ is_end|if:1:0 }}:{{ name }}"
value="{{ date|date:'Y-m-d':date_is_all_day }}"
class="do_datepicker {{ class }} {{ date_class }} form-control"
{% if placeholder %}
placeholder="{{ placeholder }}"
{% endif %}
/>
<input
type="text"
name="dt:hi:{{ is_end|if:1:0 }}:{{ name }}"
value="{% if not date_is_all_day %}{{ date|date:'H:i' }}{% endif %}"
{% if date_is_all_day %}
style="display: none;"
{% endif %}
data-timepicker="timeFormat:'H:i',step:15,scrollDefaultTime:{% if is_end %}'18:00'{%else%}'08:30'{% endif %}"
class="input-mini do_timepicker {{ class }} {{ time_class }} form-control"
/>
{% else %}
<span class="date">{{ date|date:'Y-m-d':date_is_all_day }} {% if not date_is_all_day %}{{ date|date:'H:i' }}{% endif %}</span>
{% endif %}