2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
|
|
|
//Template dashboard
|
|
|
|
|
|
|
|
$this->render('incs/head', ['title' => 'Groupes - Add'])
|
|
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
|
|
<?php
|
|
|
|
$this->render('incs/nav', ['page' => 'groupes'])
|
|
|
|
?>
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Page Heading -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header">
|
|
|
|
Nouveau groupe
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li>
|
2019-11-07 17:52:33 +01:00
|
|
|
<i class="fa fa-dashboard"></i> <a href="<?php echo \descartes\Router::url('Dashboard', 'show'); ?>">Dashboard</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
</li>
|
|
|
|
<li>
|
2019-11-09 03:35:12 +01:00
|
|
|
<i class="fa fa-group"></i> <a href="<?php echo \descartes\Router::url('Group', 'list'); ?>">Groupes</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-group fa-fw"></i> Ajout d'un groupe</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2019-11-09 03:35:12 +01:00
|
|
|
<form action="<?php echo \descartes\Router::url('Group', 'create', ['csrf' => $_SESSION['csrf']]);?>" method="POST">
|
2019-10-29 14:57:13 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label>Nom du groupe</label>
|
|
|
|
<div class="form-group input-group">
|
|
|
|
<span class="input-group-addon"><span class="fa fa-users"></span></span>
|
2020-08-17 21:05:01 +02:00
|
|
|
<input name="name" class="form-control" type="text" placeholder="Nom groupe" 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">
|
2019-11-10 00:27:42 +01:00
|
|
|
<label>Contacts du groupe</label>
|
2020-08-17 21:05:01 +02:00
|
|
|
<input class="add-contacts form-control" name="contacts[]" value="<?php $this->s(json_encode($_SESSION['previous_http_post']['contacts'] ?? [])); ?>"/>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
2019-11-09 03:35:12 +01:00
|
|
|
<a class="btn btn-danger" href="<?php echo \descartes\Router::url('Group', 'list'); ?>">Annuler</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
<input type="submit" class="btn btn-success" value="Enregistrer le groupe" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
|
|
|
jQuery('.add-contacts').each(function()
|
|
|
|
{
|
|
|
|
jQuery(this).magicSuggest({
|
2019-11-07 17:52:33 +01:00
|
|
|
data: '<?php echo \descartes\Router::url('Contact', 'json_list'); ?>',
|
2019-10-29 14:57:13 +01:00
|
|
|
valueField: 'id',
|
|
|
|
displayField: 'name',
|
2020-09-02 00:59:45 +02:00
|
|
|
name: 'contacts[]',
|
|
|
|
maxSelection: null,
|
2019-10-29 14:57:13 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$this->render('incs/footer');
|