]> git.mxchange.org Git - pizzaservice-war.git/blobdiff - web/index.xhtml
Please cherry-pick:
[pizzaservice-war.git] / web / index.xhtml
index c7f13834f3a419a6b7dd47fd74713bccf4ca9074..f0f2f839ff610f530d429bb97ff8a1c81abfa12b 100644 (file)
@@ -1,9 +1,11 @@
-<html xmlns="http://www.w3.org/1999/xhtml"
-         xmlns:ui="http://java.sun.com/jsf/facelets"
-         xmlns:h="http://xmlns.jcp.org/jsf/html"
-         xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
-         xmlns:f="http://xmlns.jcp.org/jsf/core"
-         >
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html
+       lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
+       xmlns="http://www.w3.org/1999/xhtml"
+       xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
+       xmlns:h="http://xmlns.jcp.org/jsf/html"
+       xmlns:f="http://xmlns.jcp.org/jsf/core"
+       >
 
        <!--
        TODO: Not used:
        //-->
 
        <ui:composition template="/WEB-INF/templates/guest/guest_base.tpl">
-               <ui:define name="title">Willkommen!</ui:define>
-
-               <ui:define name="menu">
-                       <ui:include id="menu" class="guest_menu" src="/WEB-INF/templates/guest/guest_menu.tpl" />
+               <ui:define name="guest_title">
+                       <h:outputText value="#{msg.PAGE_TITLE_INDEX_WELCOME}" />
                </ui:define>
 
                <ui:define name="content_header">
-                       Willkommen zum Pizza-Service
+                       <h:outputText value="#{msg.CONTENT_TITLE_INDEX_WELCOME}" />
                </ui:define>
 
                <ui:define name="content">
-                       <!--
-                       TODO Not used!
-                       <h:panelGrid class="basket_item_table" columnClasses="table_data_column" headerClass="table_header_column">
-                               <f:facet name="header">
-                                       Bestellen? Bestellmenge: Produkt: Einzelpreis:
-                               </f:facet>
-                       </h:panelGrid>
-                       //-->
-
-                       <table class="basket_item_table">
-                               <thead>
-                                       <tr>
-                                               <th colspan="5" class="table_header">
-                                                       Folgendes kann bestellt werden:
-                                               </th>
-                                       </tr>
-
-                                       <tr>
-                                               <th class="table_header_column">
-                                                       Bestellen?
-                                               </th>
-
-                                               <th class="table_header_column">
-                                                       Anzahl:
-                                               </th>
-
-                                               <th class="table_header_column">
-                                                       Produkt:
-                                               </th>
-
-                                               <th class="table_header_column">
-                                                       Einzelpreis:
-                                               </th>
-
-                                               <th class="table_header_column">
-                                                       Zwischensumme:
-                                               </th>
-                                       </tr>
-                               </thead>
-
-                               <tbody>
-                                       <ui:repeat var="product" value="#{controller.availableProducts}">
-                                               <h:form acceptcharset="utf-8" id="add_item">
-
-                                                       <f:viewAction action="#{basket.setCurrentProduct(product)}" />
-
-                                                       <ui:fragment rendered="#{basket.isCurrentProductAdded() == true}">
-                                                               <tr>
-                                                                       <td class="table_data_column">
-                                                                               <h:link outcome="basket" title="Zum Warenkorb" value="Warenkorb" />
-                                                                       </td>
-
-                                                                       <td class="table_data_column">
-                                                                               #{basket.currentItem.amount}
-                                                                       </td>
-
-                                                                       <td class="table_data_column">
-                                                                               #{product.title}
-                                                                       </td>
-
-                                                                       <td class="table_data_column" align="right">
-                                                                               <h:outputText class="price" value="#{product.price}">
-                                                                                       <f:convertNumber type="currency" minFractionDigits="2" maxFractionDigits="2" />
-                                                                               </h:outputText>
-                                                                       </td>
-
-                                                                       <td class="table_data_column" align="right">
-                                                                               <h:outputText class="price" value="#{controller.calculateTotalPrice(basket.currentItem)}">
-                                                                                       <f:convertNumber type="currency" minFractionDigits="2" maxFractionDigits="2" />
-                                                                               </h:outputText>
-                                                                       </td>
-                                                               </tr>
-                                                       </ui:fragment>
-
-                                                       <ui:fragment rendered="#{basket.isCurrentProductAdded() == false}">
-                                                               <tr>
-                                                                       <td class="table_data_column">
-                                                                               <h:commandButton class="submit" id="add" value="Hinzufügen" action="#{basket.addToBasket(product)}" />
-                                                                               <h:inputHidden id="itemId" value="#{product.itemId}" />
-                                                                               <h:inputHidden id="itemType" value="Product" />
-                                                                       </td>
-
-                                                                       <td class="table_data_column">
-                                                                               <h:inputText class="input" id="amount" size="3" maxlength="20">
-                                                                                       <!--
-                                                                                       If the customer wants to order more, he need to call in.
-                                                                                       //-->
-                                                                                       <f:validateLongRange minimum="1" maximum="10" />
-                                                                               </h:inputText>
-                                                                       </td>
-
-                                                                       <td class="table_data_column">
-                                                                               #{product.title}
-                                                                       </td>
-
-                                                                       <td class="table_data_column" align="right">
-                                                                               <h:outputText class="price" value="#{product.price}">
-                                                                                       <f:convertNumber type="currency" minFractionDigits="2" maxFractionDigits="2" />
-                                                                               </h:outputText>
-                                                                       </td>
-
-                                                                       <td class="table_data_column" align="right">
-                                                                               -
-                                                                       </td>
-                                                               </tr>
-                                                       </ui:fragment>
-                                               </h:form>
-                                       </ui:repeat>
-                               </tbody>
-                       </table>
-               </ui:define>
-
-               <ui:define name="footer">
-                       <ui:include id="footer" class="guest_footer" src="/WEB-INF/templates/guest/guest_footer.tpl" />
+                       <ui:fragment rendered="#{featureController.isFeatureEnabled('user_registration_in_index')}">
+                               <div class="registration_form">
+                                       <ui:fragment rendered="#{featureController.isFeatureEnabled('user_register_multiple_page')}">
+                                               <ui:include src="/WEB-INF/templates/guest/user/register/guest_form_register_page1.tpl" />
+                                       </ui:fragment>
+                               </div>
+
+                               <div class="para">
+                                       <h:outputText value="#{msg.CONTENT_PAGE_INDEX_PARA3}" />
+                               </div>
+                       </ui:fragment>
+
+                       <ui:fragment rendered="#{not featureController.isFeatureEnabled('user_registration_in_index')}">
+                               <ui:include src="/WEB-INF/templates/guest/guest_index.tpl" />
+                       </ui:fragment>
                </ui:define>
        </ui:composition>
 </html>