<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> <%@ page import="java.util.List, com.k_int.salcal.dto.BookingDTO" %> <% String base_dir = request.getContextPath(); List dtos = null; if (request.getAttribute("dtos")!=null && ((List)request.getAttribute("dtos")).size()>0) { dtos = (List) request.getAttribute("dtos"); %> <% for (BookingDTO b : dtos) { String t = "am"; if (!b.getIsAm()) { t = "pm"; } %> <%=b.getDateString()%> @ <%=b.getSlotTime()%> For <%=b.getUserName()%>
<% } } else { %>

You have not made any referrals.

<% } %>