2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
echo '
2018-07-09 12:57:55 +02:00
< form action = " " method = " post " role = " form " >
< input type = " hidden " name = " id_parent " value = " '. $id_parent .' " >
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " addsede " >
< div class = " row " >
2018-12-07 12:50:42 +01:00
< div class = " col-md-6 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " '.tr('Nome sede').' " , " name " : " nomesede " , " required " : 1 ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-12-07 12:50:42 +01:00
< div class = " col-md-6 " >
2018-07-31 18:54:36 +02:00
{[ " type " : " text " , " label " : " '.tr('Indirizzo').' " , " name " : " indirizzo " , " required " : 0 ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
< div class = " row " >
2018-08-28 17:10:23 +02:00
< div class = " col-md-6 " >
2018-07-31 18:54:36 +02:00
{[ " type " : " text " , " label " : " '.tr('Città').' " , " name " : " citta " , " required " : 1 ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-08-28 17:10:23 +02:00
< div class = " col-md-2 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " '.tr('C.A.P.').' " , " name " : " cap " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-08-28 17:10:23 +02:00
< div class = " col-md-2 " >
{[ " type " : " text " , " label " : " '.tr('Provincia').' " , " name " : " provincia " , " maxlength " : 2 , " class " : " text-center " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-08-28 17:10:23 +02:00
< div class = " col-md-2 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " '.tr('Km').' " , " name " : " km " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
2018-12-19 22:06:09 +01:00
< div class = " row " >
< div class = " col-md-6 " >
{[ " type " : " select " , " label " : " '.tr('Nazione').' " , " name " : " id_nazione " , " values " : " query=SELECT `id`, `nome` AS `descrizione` FROM `an_nazioni` ORDER BY `descrizione` ASC " , " value " : " " ]}
</ div >
< div class = " col-md-6 " >
{[ " type " : " select " , " label " : " '.tr('Zona').' " , " name " : " idzona " , " values " : " query=SELECT `id`, CONCAT(`nome`, \ ' - \ ', `descrizione`) AS `descrizione` FROM `an_zone` ORDER BY `descrizione` ASC " ]}
</ div >
</ div >
2017-08-04 16:28:16 +02:00
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-4 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " '.tr('Cellulare').' " , " name " : " cellulare " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-02-20 16:46:23 +01:00
< div class = " col-md-4 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " '.tr('Telefono').' " , " name " : " telefono " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-02-20 16:46:23 +01:00
< div class = " col-md-4 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " '.tr('Indirizzo email').' " , " name " : " email " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
<!-- PULSANTI -->
< div class = " row " >
< div class = " col-md-12 text-right " >
2017-09-04 12:02:29 +02:00
< button type = " submit " class = " btn btn-primary " >< i class = " fa fa-plus " ></ i > '.tr(' Aggiungi ').' </ button >
2017-08-04 16:28:16 +02:00
</ div >
</ div >
2018-10-05 11:22:32 +02:00
</ form > ' ;