Initial commit
This commit is contained in:
20
app/plugins/calendar/views/dateSelect.html
Normal file
20
app/plugins/calendar/views/dateSelect.html
Normal file
@ -0,0 +1,20 @@
|
||||
<div class="form-group">
|
||||
<label for="day" class="col-lg-3 control-label">All-Day Event</label>
|
||||
<div class="col-lg-3">
|
||||
<input class="" type="checkbox" name="allDay" id="allDay" value="true" {CHECKED:allDay=true}>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="month" class="col-lg-3 control-label">Event Start</label>
|
||||
<div class="col-lg-3">
|
||||
<input type="date" name="date" id="date" class="form-control" value="{date}" />
|
||||
<input type="time" name="time" id="time" class="form-control" value="{time}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="month" class="col-lg-3 control-label">Event End</label>
|
||||
<div class="col-lg-3">
|
||||
<input type="date" name="endDate" id="endDate" class="form-control" value="{endDate}" />
|
||||
<input type="time" name="endTime" id="endTime" class="form-control" value="{endTime}" />
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user