Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
th-app-java
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oscar Enrique Gonzalez Escurra
th-app-java
Commits
52adde3f
Commit
52adde3f
authored
Nov 23, 2021
by
Joel Florentin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tablas en los listados dentro de un card de bootstrap
parent
5658d28f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
5 deletions
+20
-5
curriculumsearch/src/main/webapp/jsp/cargos.jsp
+6
-1
curriculumsearch/src/main/webapp/jsp/convocatorias.jsp
+6
-2
curriculumsearch/src/main/webapp/jsp/tecnologias.jsp
+8
-2
No files found.
curriculumsearch/src/main/webapp/jsp/cargos.jsp
View file @
52adde3f
...
...
@@ -20,7 +20,10 @@ contentType="text/html;charset=UTF-8" language="java" %>
</form>
<a href="/cargo">Agregar Nuevo Cargo</a>
</div>
<div>
<div class="card text-dark bg-light mt-3">
<div class="card-body">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
...
...
@@ -45,6 +48,7 @@ contentType="text/html;charset=UTF-8" language="java" %>
</table>
</div>
</div>
</div>
<div class="card-footer">
<div>
<nav aria-label="Page navigation example">
...
...
@@ -57,6 +61,7 @@ contentType="text/html;charset=UTF-8" language="java" %>
</div>
</div>
</div>
</div>
</layout:put>
<layout:put block="scripts" type="APPEND">
<script>
...
...
curriculumsearch/src/main/webapp/jsp/convocatorias.jsp
View file @
52adde3f
...
...
@@ -27,8 +27,11 @@
<input type="submit" value="Buscar">
</form>
</div>
<div>
<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">
<thead>
<tr>
...
...
@@ -57,7 +60,8 @@
</tbody>
</table>
</div>
</div>
</div>
</layout:put>
<layout:put block="scripts" type="APPEND">
...
...
curriculumsearch/src/main/webapp/jsp/tecnologias.jsp
View file @
52adde3f
...
...
@@ -15,12 +15,16 @@
</form>
<a href="/tecnologia">Agregar Nueva Tecnologia</a>
</div>
<div>
<div class="card text-dark bg-light mt-3">
<div class="card-body">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Tecnologia</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
...
...
@@ -30,7 +34,7 @@
<th scope="row">${sta.index+1}</th>
<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>
</c:forEach>
...
...
@@ -39,6 +43,7 @@
</tbody>
</table>
</div>
</div>
<div class="card-footer">
<div>
<nav aria-label="Page navigation example">
...
...
@@ -51,6 +56,7 @@
</div>
</div>
</div>
</div>
</layout:put>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment