mirror of
https://github.com/Karaka-Management/oms-Checklist.git
synced 2026-01-27 15:08:43 +00:00
Next step for audit implementation
This commit is contained in:
parent
668e58e734
commit
607a80ad22
|
|
@ -21,7 +21,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<section class="box wf-100">
|
||||
<header><h1><?= $this->getHtml('General') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form id="fChecklist">
|
||||
<form id="fChecklist" method="put" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/checklist/template?{?}&csrf={$CSRF}'); ?>">
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iName"><?= $this->getHtml('Name') ?></label><td>
|
||||
<tr><td><input type="text" id="iName" name="name" required><td>
|
||||
|
|
@ -33,7 +33,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<td><button><?= $this->getHtml('Add', 0, 0); ?></button>
|
||||
<tr><td><label for="iFiles"><?= $this->getHtml('Files') ?></label><td>
|
||||
<tr><td><input id="iFiles" name="files" type="file" multiple><td>
|
||||
<tr><td><input type="submit" value="<?= $this->getHtml('Create', 0, 0); ?>"><td>
|
||||
<tr><td><input type="submit" name="createChecklist" value="<?= $this->getHtml('Create', 0, 0); ?>"><td>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
|
|
@ -44,23 +44,21 @@ echo $this->getData('nav')->render(); ?>
|
|||
<section class="box wf-100">
|
||||
<header><h1><?= $this->getHtml('Tasks') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iETitle"><?= $this->getHtml('Title') ?></label><td>
|
||||
<tr><td><input type="text" id="iETitle" name="eTitle" required><td>
|
||||
<tr><td><label for="iEDescription"><?= $this->getHtml('Description') ?></label><td>
|
||||
<tr><td><textarea id="iEDescription" name="eDescription"></textarea><td>
|
||||
<tr><td><label for="iETime"><?= $this->getHtml('TimeInMinutes') ?></label><td>
|
||||
<tr><td><input type="number" min="0" step="1" id="iETime" name="eTime" value="0"><td>
|
||||
<tr><td><label for="iEPermission"><?= $this->getHtml('Permissions') ?></label><td>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button>
|
||||
<input type="text" id="iEPermission" name="ePermission"></span>
|
||||
<td><button data-action=""><?= $this->getHtml('Add', 0, 0); ?></button>
|
||||
<tr><td><label for="iEFiles"><?= $this->getHtml('Files') ?></label><td>
|
||||
<tr><td><input id="iEFiles" name="eFiles" type="file" multiple><td>
|
||||
<tr><td><input type="submit" value="<?= $this->getHtml('Add', 0, 0); ?>" data-action=""><td>
|
||||
</table>
|
||||
</form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td><label for="iETitle"><?= $this->getHtml('Title') ?></label><td>
|
||||
<tr><td><input type="text" id="iETitle" name="eTitle" required><td>
|
||||
<tr><td><label for="iEDescription"><?= $this->getHtml('Description') ?></label><td>
|
||||
<tr><td><textarea id="iEDescription" name="eDescription"></textarea><td>
|
||||
<tr><td><label for="iETime"><?= $this->getHtml('TimeInMinutes') ?></label><td>
|
||||
<tr><td><input type="number" min="0" step="1" id="iETime" name="eTime" value="0"><td>
|
||||
<tr><td><label for="iEPermission"><?= $this->getHtml('Permissions') ?></label><td>
|
||||
<tr><td><span class="input"><button type="button" formaction=""><i class="fa fa-book"></i></button>
|
||||
<input type="text" id="iEPermission" name="ePermission"></span>
|
||||
<td><button data-action=""><?= $this->getHtml('Add', 0, 0); ?></button>
|
||||
<tr><td><label for="iEFiles"><?= $this->getHtml('Files') ?></label><td>
|
||||
<tr><td><input id="iEFiles" name="eFiles" type="file" multiple><td>
|
||||
<tr><td><input type="submit" name="createChecklistElement" value="<?= $this->getHtml('Add', 0, 0); ?>" data-action=""><td>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user