locationDaytableSimple.xhtml 1.67 KB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:composite="http://java.sun.com/jsf/composite"
	xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html"
	xmlns:f="http://java.sun.com/jsf/core" xmlns:c="http://java.sun.com/jsp/jstl/core"
>

<body>
	<composite:interface>



		<composite:attribute name="calendar" required="true" />
	</composite:interface>

	<composite:implementation>




		<table class="datetable">
			<tr>
				<th>Aika</th>
				<th jsfc="ui:repeat" var="resloc" value="#{cc.attrs.calendar[0].locations}">
					<h:outputText value="#{resloc.location.name}" />
				</th>
			</tr>
			<tr id="timeRow" jsfc="ui:repeat" value="#{cc.attrs.calendar}" var="slotLocWrap">

				<td><h:outputText value="#{slotLocWrap.slot.startTime.time}">
						<f:convertDateTime timeZone="#{userprefs.timezone}" pattern="#{sessionHandler.timePattern}" />
					</h:outputText></td>

				<td id="itemCell" jsfc="ui:repeat" var="locWrap" value="#{slotLocWrap.locations}">

					<div class="#{locWrap.taken?'taken':'free'}">
						<h:link rendered="#{!locWrap.taken or requestCalendarView.calmanage}"
							outcome="#{locWrap.taken?'/calendar/edit':'/calendar/reserve'}"
							value="#{locWrap.taken?locWrap.reservation.wholeName:'Varaa'}"
							title="#{locWrap.taken?locWrap.reservation.wholeName:'Varaa paikka'}"
						>
							<f:param name="locid" value="#{locWrap.location.id}" />
							<f:param name="slotid" value="#{slotLocWrap.slot.id}" />
						</h:link>
					</div>
				</td>
			</tr>
		</table>
	</composite:implementation>


</body>

</html>