]> git.mxchange.org Git - pizzaservice-war.git/blob - web/WEB-INF/templates/guest/guest_base.tpl
Translation update:
[pizzaservice-war.git] / web / WEB-INF / templates / guest / guest_base.tpl
1 <ui:composition
2         template="/WEB-INF/templates/base.tpl"
3         xmlns="http://www.w3.org/1999/xhtml"
4         xmlns:ui="http://java.sun.com/jsf/facelets">
5
6         <ui:define name="title"><ui:insert name="guest_title" class="guest_title" /></ui:define>
7
8         <!--
9         Show basket if it contains items, else show an empty basketController.
10         //-->
11         <ui:fragment rendered="#{basketController.isEmpty()}">
12                 <ui:include src="/WEB-INF/templates/basket/mini_basket_empty.tpl" />
13         </ui:fragment>
14         <ui:fragment rendered="#{basketController.hasItems()}">
15                 <ui:include src="/WEB-INF/templates/basket/mini_basketController.tpl" />
16         </ui:fragment>
17 </ui:composition>