]> git.mxchange.org Git - pizzaservice-war.git/blob - web/customer/checkout_done.xhtml
Please cherry-pick:
[pizzaservice-war.git] / web / customer / checkout_done.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition template="/WEB-INF/templates/guest/guest_base.tpl"
3                                 xmlns="http://www.w3.org/1999/xhtml"
4                                 xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
5                                 xmlns:h="http://xmlns.jcp.org/jsf/html"
6                                 xmlns:f="http://xmlns.jcp.org/jsf/core">
7         <ui:define name="guest_title">
8                 <h:outputText value="#{msg.PAGE_TITLE_USER_CHECKOUT_DONE}" />
9         </ui:define>
10
11         <ui:define name="content_header">
12                 <h:outputText value="#{msg.CONTENT_TITLE_USER_CHECKOUT_DONE}" />
13         </ui:define>
14
15         <ui:define name="content">
16                 <!-- @TODO Move this to i18n bundle //-->
17                 Rechnung abrufen:
18                 <h:link class="receipt_link" id="receipt" outcome="pdf" value="#{msg.LINK_OPEN_RECEIPT}" target="_blank">
19                         <f:param name="customer" value="#{beanHelper.customer.customerId}" />
20                         <f:param name="key" value="#{receiptController.fetchAccessKey()}" />
21                 </h:link>
22         </ui:define>
23 </ui:composition>