Flexbox integration

This commit is contained in:
Dennis Eichhorn 2017-01-29 10:29:50 +01:00
parent c1cbc56c9c
commit 0ca2280b6e

View File

@ -21,24 +21,28 @@ $position = $this->getData('position');
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<section class="box w-33"> <div class="row">
<header><h1><?= $this->getText('Position'); ?></h1></header> <div class="col-xs-12 col-md-6">
<div class="inner"> <section class="box wf-100">
<form> <header><h1><?= $this->getText('Position'); ?></h1></header>
<table class="layout wf-100"> <div class="inner">
<tr><td><label for="iName"><?= $this->getText('Name'); ?></label> <form>
<tr><td><input type="text" name="name" id="iName" value="<?= $position->getName(); ?>"> <table class="layout wf-100">
<tr><td><label for="iParent"><?= $this->getText('Parent'); ?></label> <tr><td><label for="iName"><?= $this->getText('Name'); ?></label>
<tr><td><input type="text" name="parent" id="iParent" value="<?= $position->getParent(); ?>"> <tr><td><input type="text" name="name" id="iName" value="<?= $position->getName(); ?>">
<tr><td><label for="iStatus"><?= $this->getText('Status'); ?></label> <tr><td><label for="iParent"><?= $this->getText('Parent'); ?></label>
<tr><td><select name="status" id="iStatus"> <tr><td><input type="text" name="parent" id="iParent" value="<?= $position->getParent(); ?>">
<option><?= $this->getText('Active'); ?> <tr><td><label for="iStatus"><?= $this->getText('Status'); ?></label>
<option><?= $this->getText('Inactive'); ?> <tr><td><select name="status" id="iStatus">
</select> <option><?= $this->getText('Active'); ?>
<tr><td><label for="iDescription"><?= $this->getText('Description'); ?></label> <option><?= $this->getText('Inactive'); ?>
<tr><td><textarea name="description" id="iDescription"><?= $position->getDescription(); ?></textarea> </select>
<tr><td><input type="submit" value="<?= $this->getText('Save', 0) ?>"> <tr><td><label for="iDescription"><?= $this->getText('Description'); ?></label>
</table> <tr><td><textarea name="description" id="iDescription"><?= $position->getDescription(); ?></textarea>
</form> <tr><td><input type="submit" value="<?= $this->getText('Save', 0) ?>">
</table>
</form>
</div>
</section>
</div> </div>
</section> </div>