Merge branch 'marvin'
This commit is contained in:
@@ -17,17 +17,38 @@
|
||||
<input type="text" class="form-control" th:attr="placeholder=#{home.search.title}" name="searchTitle">
|
||||
<select class="form-control mt-2" name="searchCategory">
|
||||
<option value="" th:text="#{home.search.cat}"></option>
|
||||
<option th:each="category : ${categories}" th:value="${category.id}" th:text="${category.libelle}"></option>
|
||||
<!-- Options de catégorie -->
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4 text-center">
|
||||
<button type="submit" class="btn btn-primary" th:text="#{home.search.button}">Search</button>
|
||||
</div>
|
||||
</form>
|
||||
<div class="row">
|
||||
<div class="col-12 col-lg-6">
|
||||
<div class="card mt-3">
|
||||
<div class="card-body">
|
||||
<form class="row">
|
||||
<div class="col-6">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio" name="transactionType" id="achats" value="achats">
|
||||
<label class="form-check-label" type="chec" >Achats</label>
|
||||
</div>
|
||||
</div><div class="col-6">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio" name="transactionType" id="ventes" value="ventes">
|
||||
<label class="form-check-label" for="ventes">Mes ventes</label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div th:each="article : ${articles}" class="col-md-6 mb-4">
|
||||
<a th:href="@{/article/show(id=${article.id})}">
|
||||
|
||||
Reference in New Issue
Block a user