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:
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user