fix templates

This commit is contained in:
Dennis Eichhorn 2024-04-17 17:45:07 +00:00
parent 730d30aacc
commit 5cacc0283a

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($project->description); ?></textarea>
<textarea id="iDescription" name="desc"><?= $this->printTextarea($project->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($project->tasks); ?>
</div>
</div>
<?php endif; ?>
</div>
<?php if (!$isNew) : ?>
<div class="row">
<div class="col-xs-12 col-md-6">
<?= $this->getData('calendar')->render($project->calendar); ?>
</div>
<div class="col-xs-12 col-md-6">
<?= $this->getData('medialist')->render($project->files); ?>
</div>
</div>
<?php endif; ?>