cyberstammtisch-silverstripe/themes/starter/templates/forms/DatetimeField.ss

22 lines
607 B
Scheme
Raw Normal View History

2021-10-20 11:45:30 +00:00
<%-- Date field, skipping its holder --%>
<% with $DateField %>
<input $getAttributesHTML('class')
class="$ExtraClass.ATT form-control"
<% if $Up.Title %>aria-labelledby="title-{$Up.ID}"<% end_if %>
/>
<% end_with %>
<%-- Time field, skipping its holder --%>
<% with $DateField %>
<input $getAttributesHTML('class')
class="$ExtraClass.ATT form-control"
<% if $Up.Title %>aria-labelledby="title-{$Up.ID}"<% end_if %>
/>
<% end_with %>
<% if $getConfig('usertimezone') %>
$TimezoneField.FieldHolder
<% end_if %>
<div class="clear"><!-- --></div>