owners.jsp
资源名称:petclinic.rar [点击查看]
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- <%@ include file="/WEB-INF/jsp/includes.jsp" %>
- <%@ include file="/WEB-INF/jsp/header.jsp" %>
- <h2>Owners:</h2>
- <table>
- <tr>
- <thead>
- <th>Name</th>
- <th>Address</th>
- <th>City</th>
- <th>Telephone</th>
- <th>Pets</th>
- </thead>
- </tr>
- <c:forEach var="owner" items="${selections}">
- <tr>
- <td>
- <a href="owner.do?ownerId=${owner.id}">${owner.firstName} ${owner.lastName}</a>
- </td>
- <td>${owner.address}</td>
- <td>${owner.city}</td>
- <td>${owner.telephone}</td>
- <td>
- <c:forEach var="pet" items="${owner.pets}">
- ${pet.name}
- </c:forEach>
- </td>
- </tr>
- </c:forEach>
- </table>
- <%@ include file="/WEB-INF/jsp/footer.jsp" %>