2017-08-04 16:28:16 +02:00
|
|
|
<?php
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
|
|
|
?><form action="" method="post" role="form">
|
|
|
|
<input type="hidden" name="backto" value="record-edit">
|
|
|
|
<input type="hidden" name="op" value="update">
|
|
|
|
|
|
|
|
<div class="pull-right">
|
2017-09-04 12:02:29 +02:00
|
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-check"></i> <?php echo tr("Salva modifiche"); ?></button>
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
<div class="clearfix"></div><br>
|
|
|
|
|
|
|
|
<!-- DATI -->
|
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
2017-09-04 12:02:29 +02:00
|
|
|
<h3 class="panel-title"><?php echo tr("Dati") ?></h3>
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12 col-md-12">
|
2017-09-04 12:02:29 +02:00
|
|
|
{[ "type": "text", "label": "<?php echo tr("Descrizione") ?>", "name": "descrizione", "required": 1, "value": "$descrizione$" ]}
|
2017-08-04 16:28:16 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<a class="btn btn-danger ask" data-backto="record-list">
|
2017-09-04 12:02:29 +02:00
|
|
|
<i class="fa fa-trash"></i> <?php echo tr('Elimina'); ?>
|
2017-08-04 16:28:16 +02:00
|
|
|
</a>
|