tecnologias.jsp 2.98 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 9 10 11 12 13 14 15 16 17
        <h2>Lista de Tecnologias</h2>

        <div>
            <form>
                <label for="tecnologias">Nombre:</label>
                <input type="text" name="nombre" id="nombre" value="${param.nombre}"/>
                <input type="submit" value="Buscar">
            </form>
            <a href="/tecnologia">Agregar Nueva Tecnologia</a>
        </div>
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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>
                      <th scope="col">Tecnologia</th>
                      <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>
                            
                              <td><a href="/tecnologia/${tecnologia.id}"><i class="bi bi-pencil-fill"></i></a></td>
                          </tr>
                      </c:forEach>
                      
41 42
                    
                  
43
                  </tbody>
44
              </table>
45 46
            </div>
          </div>
47 48 49 50 51 52 53 54 55 56 57 58
          <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>
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
        </div>
       
        
      </layout:put>
      <layout:put block="scripts" type="APPEND">
        <script>
          function buscarPagina(nro){
            nro--
            const aBuscar = 'nroPagina='+nro
            if(!location.search) location.search = "?"+aBuscar
            const inicial = location.search.search(aBuscar);
            if(inicial==-1){//si no se encuentra y hay otros queries
              location.search = "&"+aBuscar
            }
            location.search.replace('nroPagina=',aBuscar)
          }
        </script>
      </layout:put>
77
</layout:extends>