Advertisement
Guest User

Untitled

a guest
Jan 10th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <c:forEach var="appointment" items="${appointmentList}">
  2. <tr ${appointment.appointmentId==param.selectAppointment ? 'class="selectedRow"' : 'class="notSelectedRow"'}>
  3. <td>
  4. <input type="radio" value="${appointment.appointmentId}" ${param.selectAppointment==appointment.appointmentId ? 'checked' : ''} name="selectAppointment" />
  5. </td>
  6. <td>
  7. <c:forEach var="name" items="${appointment.patient.names}" end="0">
  8. <c:out value="${name}" />
  9. </c:forEach>
  10. <c:forEach var="identifier" items="${appointment.patient.identifiers}" >
  11. <c:if test="${identifier.preferred}">(${identifier})</c:if>
  12. </c:forEach>
  13. </td>
  14. <td><fmt:formatDate type="date" value="${appointment.timeSlot.startDate}"/></td>
  15. <td><fmt:formatDate type="time" pattern="HH:mm"
  16. value="${appointment.timeSlot.startDate}" /> - <fmt:formatDate type="time"
  17. pattern="HH:mm" value="${appointment.timeSlot.endDate}" /></td>
  18. <td>${appointment.timeSlot.appointmentBlock.provider.name}</td>
  19. <td>${appointment.timeSlot.appointmentBlock.location.name}</td>
  20. <td>${appointment.appointmentType.name}</td>
  21. <td>${appointment.status}</td>
  22. <td>${waitingTimes[appointment.appointmentId]}</td>
  23. <td><fmt:formatDate type="date" value="${appointment.timeSlot.startDate}"
  24. pattern="yyyyMMddHHmm" /></td>
  25. <td>${sortableWaitingTimes[appointment.appointmentId]}</td>
  26. </tr>
  27. </c:forEach>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement