vets.jsp
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. <%@ include file="/WEB-INF/jsp/includes.jsp" %>
  2. <%@ include file="/WEB-INF/jsp/header.jsp" %>
  3. <h2>Veterinarians:</h2>
  4. <table>
  5.   <tr>
  6.   <thead>
  7.     <th>Name</th>
  8.     <th>Specialties</th>
  9.   </thead>
  10.   </tr>
  11.   <c:forEach var="vet" items="${vetList}">
  12.     <tr>
  13.       <td>${vet.firstName} ${vet.lastName}</td>
  14.       <td>
  15.     <c:forEach var="specialty" items="${vet.specialties}">
  16.           ${specialty.name}
  17.         </c:forEach>
  18.         <c:if test="${vet.nrOfSpecialties == 0}">none</c:if>
  19.       </td>
  20.     </tr>
  21.   </c:forEach>
  22. </table>
  23. <%@ include file="/WEB-INF/jsp/footer.jsp" %>