Changeset e272096 for src/main/resources/templates/kontrola.html
- Timestamp:
- 02/18/24 22:01:54 (9 months ago)
- Branches:
- master
- Children:
- 4251327
- Parents:
- bde8b13
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/kontrola.html
rbde8b13 re272096 1 1 <div xmlns:th="http://www.thymeleaf.org"> 2 <section class="jumbotron text-center">3 <div class="container">4 <h1 class="jumbotron-heading">WEB PROGRAMMING SHOP</h1>5 <h3 class="jumbotron-heading">All products</h3>6 </div>7 </section>8 2 3 <div class="container mb-4"> 4 <div class="row"> 5 <div class="col-12" > 9 6 10 7 <form class="form-signin mt-xl-5" method="post" th:action="@{'/kontrola/{id}/kazni-neregistriran'(id=${kontrola.kontrolaId})}"> … … 12 9 13 10 <p> 14 <label for="dokument" class="sr-only">Email</label>11 <label for="dokument" >Dokument</label> 15 12 <input class="form-control" name="dokument" id="dokument" type="text"> 16 13 </p> … … 18 15 19 16 <p> 20 <label for="telefon" class="sr-only">Telefon</label>17 <label for="telefon" >Telefon</label> 21 18 <input class="form-control" name="telefon" id="telefon" type="text"> 22 19 </p> 23 20 24 21 <p> 25 <label for="ime" class="sr-only">Ime</label>22 <label for="ime" >Ime</label> 26 23 <input class="form-control" name="ime" id="ime" type="text"> 27 24 </p> 28 25 29 26 <p> 30 <label for="adresa" class="sr-only">Adresa</label>27 <label for="adresa" >Adresa</label> 31 28 <input class="form-control" name="adresa" id="adresa" type="text"> 32 29 </p> … … 34 31 35 32 <p> 36 <label for="iznos" class="sr-only">Iznos</label>33 <label for="iznos" >Iznos</label> 37 34 <input class="form-control" name="iznos" id="iznos" type="number"> 38 35 </p> … … 49 46 50 47 48 51 49 <form class="form-signin mt-xl-5" method="post" th:action="@{'/kontrola/{id}/kazni-registriran'(id=${kontrola.kontrolaId})}"> 52 50 <h2 class="form-signin-heading">Kazna za regirstiran</h2> 53 51 54 52 <p> 55 <label for="dk" class="sr-only">Dokument</label>53 <label for="dk" >Dokument</label> 56 54 <input class="form-control" name="dokument" id="dk" type="text"> 57 55 </p> 58 56 59 57 <p> 60 <label for="iz" class="sr-only">Iznos</label>58 <label for="iz" >Iznos</label> 61 59 <input class="form-control" name="iznos" id="iz" type="number"> 62 60 </p> 63 61 64 62 <p> 65 <label for="patnik" class="sr-only">Patnik</label>63 <label for="patnik" >Patnik</label> 66 64 <select id="patnik" name="patnik" class="form-control"> 67 65 <option th:each="patnik : ${patnici}" … … 82 80 </div> 83 81 </form> 82 83 </div> 84 </div> 85 </div> 86 84 87 85 88 … … 114 117 115 118 <td class="text-right"> 116 <th:block sec:authorize="hasRole('ROLE_ADMIN')">117 <form th:action="@{'/products/delete/{id}' (id=${kazna.kzId})}" 118 th:method="DELETE">119 <button type="submit" 120 class="btn btn-sm btn-danger delete-product">121 <i class="fas fa-trash-alt"></i> Delete 122 </button>123 </form>124 </th:block>119 <!-- <th:block sec:authorize="hasRole('ROLE_ADMIN')">--> 120 <!-- <form th:action="@{'/products/delete/{id}' (id=${kazna.kzId})}"--> 121 <!-- th:method="DELETE">--> 122 <!-- <button type="submit"--> 123 <!-- class="btn btn-sm btn-danger delete-product">--> 124 <!-- <i class="fas fa-trash-alt"></i> Delete--> 125 <!-- </button>--> 126 <!-- </form>--> 127 <!-- </th:block>--> 125 128 </td> 126 129 <td> 127 <th:block sec:authorize="hasRole('ROLE_ADMIN')">128 <a th:href="@{'/products/edit-form/{id}' (id=${kazna.kzId})}" 129 class="btn btn-sm btn-info edit-product">130 <i class="fas fa-edit"></i> Edit 131 </a>132 </th:block>130 <!-- <th:block sec:authorize="hasRole('ROLE_ADMIN')">--> 131 <!-- <a th:href="@{'/products/edit-form/{id}' (id=${kazna.kzId})}"--> 132 <!-- class="btn btn-sm btn-info edit-product">--> 133 <!-- <i class="fas fa-edit"></i> Edit--> 134 <!-- </a>--> 135 <!-- </th:block>--> 133 136 </td> 134 137 <td> 135 <form th:action="@{'/shopping-cart/add-product/{id}' (id=${kazna.kzId})}" 136 th:method="POST"> 137 <button type="submit" class="btn btn-sm btn-success add-to-cart"> 138 <i class="fas fa-shopping-cart"></i> Add to cart 139 </button> 140 </form> 138 141 139 </td> 142 140 </tr>
Note:
See TracChangeset
for help on using the changeset viewer.