récupération du back up
This commit is contained in:
parent
6ed4394dda
commit
2535d13d7c
10 changed files with 852 additions and 8 deletions
|
|
@ -104,14 +104,20 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- catégorie modif -->
|
||||
<!-- catégorie modif -->
|
||||
<div class="p-3 mt-2 text-primary-emphasis bg-primary-subtle border border-primary-subtle rounded-3">
|
||||
<form method="post">
|
||||
<div class="container-fluid pt-2">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<select class="form-select" aria-label="Default select example">
|
||||
<option value="0" {if ($objCategory->getId() == 0)} selected {/if}>Modifier un catégorie existante</option>
|
||||
{foreach from=$arrCategoryToDisplay item=arrDetCategory}
|
||||
|
||||
<option value="{$objCategory->getId()}" {if ($objCategory->getId() == $arrDetCategory['category_id'])} selected {/if}>
|
||||
{$objCategory->getName()}
|
||||
<option value="0" selected >Modifier un catégorie existante</option>
|
||||
{/foreach}
|
||||
|
||||
{foreach from=$arrCategoryToDisplay item=arrDetCategory}
|
||||
<option value="{$arrDetCategory->getId()}" >
|
||||
|
|
@ -152,4 +158,5 @@
|
|||
</main>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/block}
|
||||
|
|
@ -9,6 +9,18 @@
|
|||
directement en contact avec les entreprises.</p>
|
||||
</section>
|
||||
|
||||
<!--filtres de "recherche"-->
|
||||
<section class="container mt-5 p-5 d-flex flex-column align-items-center text-center">
|
||||
<div>
|
||||
<form method="GET">
|
||||
<button type="submit" class="btn btn-primary" value="">catégorie 1</button>
|
||||
<button type="submit" class="btn btn-primary" value="">catégorie 2</button>
|
||||
<button type="submit" class="btn btn-primary" value="">Plus de 6 mois</button>
|
||||
<button type="reset" class="btn btn-primary" value="">Tout</button>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="container" aria-label="Articles récents">
|
||||
<h2 class="visually-hidden">Les 4 derniers articles</h2>
|
||||
<div class="row mb-2">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue