Supprimer le formulaire inutile

This commit is contained in:
Fred Tempez 2020-04-09 22:56:12 +02:00
parent 7ae925e3dc
commit fc3b40eab4
1 changed files with 14 additions and 16 deletions

View File

@ -46,20 +46,18 @@
</div> </div>
</div> </div>
<?php echo template::formClose(); ?> <?php echo template::formClose(); ?>
<?php echo template::formOpen('galleryConfigFilterForm'); ?> <div class="row">
<div class="row"> <div class="col12">
<div class="col12"> <div class="block">
<div class="block"> <h4>Galeries installées</h4>
<h4>Galeries installées</h4> <?php if($module::$galleries): ?>
<?php if($module::$galleries): ?> <?php echo template::table([1, 4, 5, 1, 1], $module::$galleries, ['','Nom', 'Dossier cible', '', ''], ['id' => 'galleryTable'],$module::$galleriesId); ?>
<?php echo template::table([1, 4, 5, 1, 1], $module::$galleries, ['','Nom', 'Dossier cible', '', ''], ['id' => 'galleryTable'],$module::$galleriesId); ?> <?php echo template::hidden('galleryConfigFilterResponse'); ?>
<?php echo template::hidden('galleryConfigFilterResponse'); ?> <?php else: ?>
<?php else: ?> <?php echo template::speech('Aucune galerie.'); ?>
<?php echo template::speech('Aucune galerie.'); ?> <?php endif; ?>
<?php endif; ?>
</div>
<div class="moduleVersion">Version
<?php echo $module::GALLERY_VERSION; ?>
</div>
</div> </div>
<?php echo template::formClose(); ?> <div class="moduleVersion">Version
<?php echo $module::GALLERY_VERSION; ?>
</div>
</div>