mirror of
https://github.com/Karaka-Management/oms-Organization.git
synced 2026-02-15 15:58:40 +00:00
Flexbox integration
This commit is contained in:
parent
c1cbc56c9c
commit
0ca2280b6e
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user