mirror of
https://github.com/itflow-org/itflow
synced 2026-03-06 05:44:52 +00:00
Merge pull request #1098 from itflow-org/cal-rep-dis
Disable calendar repeat for now until we properly add it
This commit is contained in:
@@ -70,7 +70,7 @@
|
|||||||
<input type="datetime-local" class="form-control" id="event_add_start" name="start" required onblur="updateIncrementEndTime()">
|
<input type="datetime-local" class="form-control" id="event_add_start" name="start" required onblur="updateIncrementEndTime()">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<div class="input-group-prepend">
|
<div class="input-group-prepend">
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
<div class="input-group-prepend">
|
<div class="input-group-prepend">
|
||||||
<span class="input-group-text"><i class="fa fa-fw fa-recycle"></i></span>
|
<span class="input-group-text"><i class="fa fa-fw fa-recycle"></i></span>
|
||||||
</div>
|
</div>
|
||||||
<select class="form-control select2" name="repeat">
|
<select class="form-control select2" name="repeat" disabled>
|
||||||
<option value="">Never</option>
|
<option value="">Never</option>
|
||||||
<option>Day</option>
|
<option>Day</option>
|
||||||
<option>Week</option>
|
<option>Week</option>
|
||||||
|
|||||||
@@ -72,7 +72,7 @@
|
|||||||
<input type="datetime-local" class="form-control" name="start" value="<?php echo date('Y-m-d\TH:i:s', strtotime($event_start)); ?>" required>
|
<input type="datetime-local" class="form-control" name="start" value="<?php echo date('Y-m-d\TH:i:s', strtotime($event_start)); ?>" required>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<div class="input-group-prepend">
|
<div class="input-group-prepend">
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
<div class="input-group-prepend">
|
<div class="input-group-prepend">
|
||||||
<span class="input-group-text"><i class="fa fa-fw fa-recycle"></i></span>
|
<span class="input-group-text"><i class="fa fa-fw fa-recycle"></i></span>
|
||||||
</div>
|
</div>
|
||||||
<select class="form-control select2" name="repeat">
|
<select class="form-control select2" name="repeat" disabled>
|
||||||
<option <?php if (empty($event_repeat)) { echo "selected"; } ?> value="">Never</option>
|
<option <?php if (empty($event_repeat)) { echo "selected"; } ?> value="">Never</option>
|
||||||
<option <?php if ($event_repeat == "Day") { echo "selected"; } ?>>Day</option>
|
<option <?php if ($event_repeat == "Day") { echo "selected"; } ?>>Day</option>
|
||||||
<option <?php if ($event_repeat == "Week") { echo "selected"; } ?>>Week</option>
|
<option <?php if ($event_repeat == "Week") { echo "selected"; } ?>>Week</option>
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
<option <?php if ($event_repeat == "Year") { echo "selected"; } ?>>Year</option>
|
<option <?php if ($event_repeat == "Year") { echo "selected"; } ?>>Year</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
<label>Description</label>
|
<label>Description</label>
|
||||||
<textarea class="form-control" rows="8" name="description" placeholder="Enter a description"><?php echo $event_description; ?></textarea>
|
<textarea class="form-control" rows="8" name="description" placeholder="Enter a description"><?php echo $event_description; ?></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user