This commit is contained in:
Keith Donald 2009-05-06 19:28:19 +00:00 committed by Mic
parent 9106b83834
commit 75504b859f
3 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,2 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<h2>Appointment Calendar</h2>

View file

@ -0,0 +1,2 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<h2>Search Owners</h2>

View file

@ -13,9 +13,19 @@
<definition name="home" extends="page"> <definition name="home" extends="page">
<put-attribute name="title" value="Welcome to Petclinic" type="string" /> <put-attribute name="title" value="Welcome to Petclinic" type="string" />
<put-attribute name="content" value="/WEB-INF/home.jsp" /> <put-attribute name="content" value="/WEB-INF/home.jsp" type="template" />
</definition> </definition>
<!-- OWNER PAGES --> <!-- APPOINTMENTS PAGES -->
<definition name="appointments" extends="page">
<put-attribute name="title" value="Appointment" type="string" />
<put-attribute name="content" value="/WEB-INF/appointments/calendar.jsp" type="template" />
</definition>
<!-- OWNERS PAGES -->
<definition name="owners" extends="page">
<put-attribute name="title" value="Owner Search" type="string" />
<put-attribute name="content" value="/WEB-INF/owners/search.jsp" type="template" />
</definition>
</tiles-definitions> </tiles-definitions>