openstamanager/modules/listini/add.php

27 lines
800 B
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
?><form action="editor.php?id_module=$id_module$" method="post">
<input type="hidden" name="op" value="add">
<input type="hidden" name="backto" value="record-edit">
<div class="row">
<div class="col-md-6">
{[ "type": "text", "label": "<?php echo _('Nome'); ?>", "name": "nome", "required": 1, "value": "" ]}
</div>
<div class="col-md-6">
{[ "type": "text", "label": "<?php echo _('Guadagno/sconto'); ?>", "name": "prc_guadagno", "required": 1, "class": "text-right", "value": "0", "icon-after": "%" ]}
</div>
</div>
<!-- PULSANTI -->
<div class="row">
<div class="col-md-12 text-right">
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo _('Aggiungi'); ?></button>
</div>
</div>
</form>