tecnologias.jsp 2.88 KB
Newer Older
1 2 3
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
4 5
<%@ taglib uri="http://kwonnam.pe.kr/jsp/template-inheritance" prefix="layout"%>
<layout:extends name="layouts/base.jsp">
6
    <layout:put block="cssDeclaracion" type="APPEND"></layout:put>
7
    <layout:put block="contents" type="REPLACE">
8
        <h2>Lista de Tecnologías</h2>
9 10 11

        <div>
            <form>
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
              <div class="row justify-content-start gy-2">
                <div class="col-auto">
                  <input
                    class="form-control" 
                    placeholder="Nombre"
                    type="text"
                    name="nombre"
                    id="nombre"
                    value="${param.nombre}"
                  />

                </div>
                <div class="col-auto">

                  <input type="submit" class="btn btn-primary" value="Buscar" />
                </div>
                
              </div>
30
            </form>
31
            
32
        </div>
33 34 35 36 37 38 39 40
        <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>
41
                      <th scope="col">Tecnología</th>
42 43 44 45 46 47 48 49 50 51
                      <th scope="col"></th>
                    </tr>
                  </thead>
                  <tbody>
                    
                      <c:forEach items="${tecnologias}" var="tecnologia" varStatus="sta">
                          <tr>
                              <th scope="row">${sta.index+1}</th>
                              <td>${tecnologia.getNombre()}</td>
                            
52
                              <td><a href="/tecnologias/modificar/${tecnologia.id}"><i class="bi bi-pencil-fill"></i></a></td>
53 54 55
                          </tr>
                      </c:forEach>
                      
56 57
                    
                  
58
                  </tbody>
59
              </table>
60 61
            </div>
          </div>
62 63 64 65 66 67 68 69 70 71 72 73
          <div class="card-footer">
              <div>
                <nav aria-label="Page navigation example">
                  <ul class="pagination">
                    <c:forEach begin="1" end="${pages}" var="nro">
                      <li class="page-item ${(param.nroPagina == null and nro == 1)  or param.nroPagina == nro-1 ? 'active' : ''}"><a class="page-link" href="javascript:buscarPagina(${nro})">${nro}</a></li>
                    </c:forEach>
                  </ul>
                </nav>
              </div>
            </div>
        </div>
74 75 76 77 78
        </div>
       
        
      </layout:put>
      <layout:put block="scripts" type="APPEND">
79
        
80
      </layout:put>
81
</layout:extends>