Skip to content

Commit

Permalink
Added interval attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
sah-comp committed Oct 20, 2020
1 parent c5e5785 commit 421b0d3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app/res/tpl/model/appointment/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,4 +345,20 @@ class="autocomplete"
<p class="info"><?php echo I18n::__('appointment_info_note') ?></p>
</div>
</fieldset>
<fieldset>
<legend class="verbose"><?php echo I18n::__('appointment_legend_interval') ?></legend>
<div class="row <?php echo ($record->hasError('interval')) ? 'error' : ''; ?>">
<label
for="appointment-interval">
<?php echo I18n::__('appointment_label_interval') ?>
</label>
<input
id="appointment-interval"
class="number"
type="text"
name="dialog[interval]"
value="<?php echo htmlspecialchars($record->decimal('interval', 0)) ?>" />
<p class="info"><?php echo I18n::__('appointment_info_interval') ?></p>
</div>
</fieldset>
<!-- end of appointment edit form -->

0 comments on commit 421b0d3

Please sign in to comment.