mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-04-25 11:52:48 +00:00
polish
This commit is contained in:
parent
9106b83834
commit
75504b859f
3 changed files with 16 additions and 2 deletions
|
@ -0,0 +1,2 @@
|
|||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<h2>Appointment Calendar</h2>
|
|
@ -0,0 +1,2 @@
|
|||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<h2>Search Owners</h2>
|
|
@ -13,9 +13,19 @@
|
|||
|
||||
<definition name="home" extends="page">
|
||||
<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>
|
||||
|
||||
<!-- 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>
|
Loading…
Reference in a new issue