2019-10-29 14:57:13 +01:00
< ? php
//Template dashboard
$this -> render ( 'incs/head' , [ 'title' => 'Command - Add' ])
?>
< div id = " wrapper " >
< ? php
$this -> render ( 'incs/nav' , [ 'page' => 'commands' ])
?>
< div id = " page-wrapper " >
< div class = " container-fluid " >
<!-- Page Heading -->
< div class = " row " >
< div class = " col-lg-12 " >
< h1 class = " page-header " >
Nouvelle commande
</ h1 >
< ol class = " breadcrumb " >
< li >
2019-11-07 17:52:33 +01:00
< i class = " fa fa-dashboard " ></ i > < a href = " <?php echo \ descartes \R outer::url('Dashboard', 'show'); ?> " > Dashboard </ a >
2019-10-29 14:57:13 +01:00
</ li >
< li >
2019-11-07 17:52:33 +01:00
< i class = " fa fa-terminal " ></ i > < a href = " <?php echo \ descartes \R outer::url('Command', 'list'); ?> " > Commandes </ a >
2019-10-29 14:57:13 +01:00
</ li >
< li class = " active " >
< i class = " fa fa-plus " ></ i > Nouveau
</ li >
</ ol >
</ div >
</ div >
<!-- /. row -->
< div class = " row " >
< div class = " col-lg-12 " >
< div class = " panel panel-default " >
< div class = " panel-heading " >
< h3 class = " panel-title " >< i class = " fa fa-terminal fa-fw " ></ i > Ajout d ' une nouvelle commande </ h3 >
</ div >
< div class = " panel-body " >
2019-11-07 17:52:33 +01:00
< form action = " <?php echo \ descartes \R outer::url('Command', 'create', ['csrf' => $_SESSION['csrf'] ]);?> " method = " POST " >
2019-10-29 14:57:13 +01:00
< div class = " form-group " >
< label > Nom commande </ label >
< div class = " form-group " >
2020-08-17 21:05:01 +02:00
< input name = " name " class = " form-control " type = " text " placeholder = " Nom commande " autofocus required value = " <?php $this->s ( $_SESSION['previous_http_post'] ['name'] ?? '') ?> " >
2019-10-29 14:57:13 +01:00
</ div >
</ div >
< div class = " form-group " >
< label > Commande à appeler ( la commande sera appelée depuis le dossier " <?php echo PWD_SCRIPTS; ?> " ) </ label >
< div class = " form-group input-group " >
< span class = " input-group-addon " >< span class = " fa fa-link " ></ span ></ span >
2020-08-17 21:05:01 +02:00
< input name = " script " class = " form-control " type = " text " placeholder = " Ex : chauffage/monter.sh " autofocus required value = " <?php $this->s ( $_SESSION['previous_http_post'] ['script'] ?? ''); ?> " >
2019-10-29 14:57:13 +01:00
</ div >
</ div >
< div class = " form-group " >
< label > Niveau administrateur obligatoire </ label >
< div class = " form-group " >
2020-08-17 21:05:01 +02:00
< input name = " admin " type = " radio " value = " 1 " required < ? = ( isset ( $_SESSION [ 'previous_http_post' ][ 'admin' ]) && ( bool ) $_SESSION [ 'previous_http_post' ][ 'admin' ]) ? 'checked' : '' ; ?> /> Oui
< input name = " admin " type = " radio " value = " 0 " required < ? = ( isset ( $_SESSION [ 'previous_http_post' ][ 'admin' ]) && ! ( bool ) $_SESSION [ 'previous_http_post' ][ 'admin' ]) ? '' : 'checked' ; ?> /> Non
2019-10-29 14:57:13 +01:00
</ div >
</ div >
2019-11-07 17:52:33 +01:00
< a class = " btn btn-danger " href = " <?php echo \ descartes \R outer::url('Command', 'list'); ?> " > Annuler </ a >
2019-10-29 14:57:13 +01:00
< input type = " submit " class = " btn btn-success " value = " Enregistrer la commande " />
</ form >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
< ? php
$this -> render ( 'incs/footer' );