Commit 52adde3f by Joel Florentin

tablas en los listados dentro de un card de bootstrap

parent 5658d28f
...@@ -20,7 +20,10 @@ contentType="text/html;charset=UTF-8" language="java" %> ...@@ -20,7 +20,10 @@ contentType="text/html;charset=UTF-8" language="java" %>
</form> </form>
<a href="/cargo">Agregar Nuevo Cargo</a> <a href="/cargo">Agregar Nuevo Cargo</a>
</div> </div>
<div> <div class="card text-dark bg-light mt-3">
<div class="card-body">
<div class="table-responsive">
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
...@@ -45,6 +48,7 @@ contentType="text/html;charset=UTF-8" language="java" %> ...@@ -45,6 +48,7 @@ contentType="text/html;charset=UTF-8" language="java" %>
</table> </table>
</div> </div>
</div> </div>
</div>
<div class="card-footer"> <div class="card-footer">
<div> <div>
<nav aria-label="Page navigation example"> <nav aria-label="Page navigation example">
...@@ -57,6 +61,7 @@ contentType="text/html;charset=UTF-8" language="java" %> ...@@ -57,6 +61,7 @@ contentType="text/html;charset=UTF-8" language="java" %>
</div> </div>
</div> </div>
</div> </div>
</div>
</layout:put> </layout:put>
<layout:put block="scripts" type="APPEND"> <layout:put block="scripts" type="APPEND">
<script> <script>
......
...@@ -27,8 +27,11 @@ ...@@ -27,8 +27,11 @@
<input type="submit" value="Buscar"> <input type="submit" value="Buscar">
</form> </form>
</div> </div>
<div>
<a href="/convocatoria">Agregar Nueva Convocatoria</a> <a href="/convocatoria">Agregar Nueva Convocatoria</a>
<div class="card text-dark bg-light mt-3">
<div class="card-body">
<div class="table-responsive">
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
...@@ -57,7 +60,8 @@ ...@@ -57,7 +60,8 @@
</tbody> </tbody>
</table> </table>
</div>
</div>
</div> </div>
</layout:put> </layout:put>
<layout:put block="scripts" type="APPEND"> <layout:put block="scripts" type="APPEND">
......
...@@ -15,12 +15,16 @@ ...@@ -15,12 +15,16 @@
</form> </form>
<a href="/tecnologia">Agregar Nueva Tecnologia</a> <a href="/tecnologia">Agregar Nueva Tecnologia</a>
</div> </div>
<div> <div class="card text-dark bg-light mt-3">
<div class="card-body">
<div class="table-responsive">
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
<th scope="col">#</th> <th scope="col">#</th>
<th scope="col">Tecnologia</th> <th scope="col">Tecnologia</th>
<th scope="col"></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
...@@ -30,7 +34,7 @@ ...@@ -30,7 +34,7 @@
<th scope="row">${sta.index+1}</th> <th scope="row">${sta.index+1}</th>
<td>${tecnologia.getNombre()}</td> <td>${tecnologia.getNombre()}</td>
<td><a href="/tecnologia/${tecnologia.id}">Editar tecnologia</a></td> <td><a href="/tecnologia/${tecnologia.id}"><i class="bi bi-pencil-fill"></i></a></td>
</tr> </tr>
</c:forEach> </c:forEach>
...@@ -39,6 +43,7 @@ ...@@ -39,6 +43,7 @@
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
<div class="card-footer"> <div class="card-footer">
<div> <div>
<nav aria-label="Page navigation example"> <nav aria-label="Page navigation example">
...@@ -51,6 +56,7 @@ ...@@ -51,6 +56,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</layout:put> </layout:put>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment