fix structure

This commit is contained in:
Dennis Eichhorn 2020-06-05 19:50:26 +02:00
parent d06927e7ec
commit 4b7806f527

View File

@ -68,23 +68,23 @@ echo $this->getData('nav')->render(); ?>
<div class="portlet-body"> <div class="portlet-body">
<table class="layout wf-100"> <table class="layout wf-100">
<tr><td> <tr><td>
<span class="radio"> <label class="radio" for="iNewsTypeArticle">
<label for="iNewsTypeArticle"><?= $this->getHtml('News'); ?></label>
<input type="radio" name="type" id="iNewsTypeArticle" form="docForm" value="<?= $this->printHtml(Modules\News\Models\NewsType::ARTICLE); ?>" checked> <input type="radio" name="type" id="iNewsTypeArticle" form="docForm" value="<?= $this->printHtml(Modules\News\Models\NewsType::ARTICLE); ?>" checked>
<span class="checkmark"></span> <span class="checkmark"></span>
</span> <?= $this->getHtml('News'); ?>
</label>
<tr><td> <tr><td>
<span class="radio"> <label class="radio" for="iNewsTypeHeadline">
<label for="iNewsTypeHeadline"><?= $this->getHtml('Headline'); ?></label>
<input type="radio" name="type" id="iNewsTypeHeadline" form="docForm" value="<?= $this->printHtml(Modules\News\Models\NewsType::HEADLINE); ?>"> <input type="radio" name="type" id="iNewsTypeHeadline" form="docForm" value="<?= $this->printHtml(Modules\News\Models\NewsType::HEADLINE); ?>">
<span class="checkmark"></span> <span class="checkmark"></span>
</span> <?= $this->getHtml('Headline'); ?>
</label>
<tr><td> <tr><td>
<span class="radio"> <label class="radio" for="iNewsTypeLink">
<label for="iNewsTypeLink"><?= $this->getHtml('Link'); ?></label>
<input type="radio" name="type" id="iNewsTypeLink" form="docForm" value="<?= $this->printHtml(Modules\News\Models\NewsType::LINK); ?>"> <input type="radio" name="type" id="iNewsTypeLink" form="docForm" value="<?= $this->printHtml(Modules\News\Models\NewsType::LINK); ?>">
<span class="checkmark"></span> <span class="checkmark"></span>
</span> <?= $this->getHtml('Link'); ?>
</label>
</table> </table>
</div> </div>
</section> </section>