fix templates

This commit is contained in:
Dennis Eichhorn 2024-04-17 17:45:07 +00:00
parent d2cae3ffd1
commit b5cdb73eac
2 changed files with 3 additions and 23 deletions

View File

@ -23,7 +23,7 @@ echo $this->data['nav']->render(); ?>
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<section class="portlet">
<div class="portlet-head"><?= $this->getHtml('Events'); ?><i class="g-icon download btn end-xs">download</i></div>
<div class="slider">
<table class="default sticky">
@ -45,6 +45,6 @@ echo $this->data['nav']->render(); ?>
<?php endif; ?>
</table>
</div>
</div>
</section>
</div>
</div>

View File

@ -56,7 +56,7 @@ echo $this->data['nav']->render(); ?>
<div class="form-group">
<label for="iDescription"><?= $this->getHtml('Description'); ?></label>
<textarea id="iDescription" name="desc"><?= $this->printHtml($event->description); ?></textarea>
<textarea id="iDescription" name="desc"><?= $this->printTextarea($event->descriptionRaw); ?></textarea>
</div>
<div class="form-group">
@ -103,24 +103,4 @@ echo $this->data['nav']->render(); ?>
</form>
</section>
</div>
<?php if (!$isNew) : ?>
<div class="col-xs-12 col-md-6">
<div class="box wf-100">
<?= $this->getData('tasklist')->render($event->tasks); ?>
</div>
</div>
<?php endif; ?>
</div>
<?php if (!$isNew) : ?>
<div class="row">
<div class="col-xs-12 col-md-6">
<?= $this->getData('calendar')->render($event->getCalendar()); ?>
</div>
<div class="col-xs-12 col-md-6">
<?= $this->getData('medialist')->render($event->files); ?>
</div>
</div>
<?php endif; ?>