started with template fixes

This commit is contained in:
Dennis Eichhorn 2024-03-29 15:26:00 +00:00
parent bcd6b7f5e5
commit 485754e366
2 changed files with 4 additions and 2 deletions

View File

@ -42,12 +42,12 @@ echo $this->data['nav']->render(); ?>
<div class="form-group">
<label for="iStart"><?= $this->getHtml('Start'); ?></label>
<input type="datetime-local" id="iStart" name="start" value="<?= $survey->start->format('Y-m-d\TH:i'); ?>" required>
<input type="datetime-local" id="iStart" name="start" value="<?= $survey->start?->format('Y-m-d\TH:i'); ?>" required>
</div>
<div class="form-group">
<label for="iEnd"><?= $this->getHtml('End'); ?></label>
<input type="datetime-local" id="iEnd" name="end" value="<?= $survey->end->format('Y-m-d\TH:i'); ?>" required>
<input type="datetime-local" id="iEnd" name="end" value="<?= $survey->end?->format('Y-m-d\TH:i'); ?>" required>
</div>
<div class="form-group">

View File

@ -117,10 +117,12 @@ echo $this->data['nav']->render(); ?>
<?php endif; ?>
</table>
</div>
<!--
<div class="portlet-foot">
<a tabindex="0" class="button" href="<?= UriFactory::build($previous); ?>"><?= $this->getHtml('Previous', '0', '0'); ?></a>
<a tabindex="0" class="button" href="<?= UriFactory::build($next); ?>"><?= $this->getHtml('Next', '0', '0'); ?></a>
</div>
-->
</div>
</div>
</div>