mirror of
https://github.com/Karaka-Management/oms-Organization.git
synced 2026-01-20 20:28:40 +00:00
fix template bugs
This commit is contained in:
parent
b0baa7a9eb
commit
49f3cede27
|
|
@ -29,7 +29,10 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tr><td><label for="iName"><?= $this->getHtml('Name') ?></label>
|
||||
<tr><td><input type="text" name="name" id="iName" value="<?= htmlspecialchars($department->getName(), ENT_COMPAT, 'utf-8'); ?>">
|
||||
<tr><td><label for="iParent"><?= $this->getHtml('Parent') ?></label>
|
||||
<tr><td><input type="text" name="parent" id="iParent" value="<?= htmlspecialchars($department->getParent()->getName(), ENT_COMPAT, 'utf-8'); ?>">
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" name="parent" id="iParent" value="<?= htmlspecialchars($department->getParent()->getName(), ENT_COMPAT, 'utf-8'); ?>"></span>
|
||||
<tr><td><label for="iUnit"><?= $this->getHtml('Unit') ?></label>
|
||||
<tr><td><select name="unit" id="iUnit">
|
||||
</select>
|
||||
<tr><td><label for="iStatus"><?= $this->getHtml('Status') ?></label>
|
||||
<tr><td><select name="status" id="iStatus">
|
||||
<option><?= $this->getHtml('Active') ?>
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tr><td><input type="text" name="name" id="iName" placeholder=" Orange Management" required>
|
||||
<tr><td><label for="iParent"><?= $this->getHtml('Parent') ?></label>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" name="parent" id="iParent"></span>
|
||||
<tr><td><label for="iDepartment"><?= $this->getHtml('Department') ?></label>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" name="department" id="iDepartment"></span>
|
||||
<tr><td><label for="iStatus"><?= $this->getHtml('Status') ?></label>
|
||||
<tr><td><select name="status" id="iStatus">
|
||||
<option value="<?= htmlspecialchars(\Modules\Organization\Models\Status::ACTIVE, ENT_COMPAT, 'utf-8'); ?>"><?= $this->getHtml('Active') ?>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,9 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tr><td><label for="iName"><?= $this->getHtml('Name') ?></label>
|
||||
<tr><td><input type="text" name="name" id="iName" value="<?= htmlspecialchars($position->getName(), ENT_COMPAT, 'utf-8'); ?>">
|
||||
<tr><td><label for="iParent"><?= $this->getHtml('Parent') ?></label>
|
||||
<tr><td><input type="text" name="parent" id="iParent" value="<?= htmlspecialchars($position->getParent()->getName(), ENT_COMPAT, 'utf-8'); ?>">
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" name="parent" id="iParent" value="<?= htmlspecialchars($position->getParent()->getName(), ENT_COMPAT, 'utf-8'); ?>"></span>
|
||||
<tr><td><label for="iDepartment"><?= $this->getHtml('Department') ?></label>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button><input type="text" name="department" id="iDepartment"></span>
|
||||
<tr><td><label for="iStatus"><?= $this->getHtml('Status') ?></label>
|
||||
<tr><td><select name="status" id="iStatus">
|
||||
<option><?= $this->getHtml('Active') ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user