/web/beslagslister/View.xhtml
XHTML | 54 lines | 51 code | 3 blank | 0 comment | 0 complexity | 73783814a2f3dc3df082940ec7aadcca MD5 | raw file
1<?xml version="1.0" encoding="UTF-8" ?> 2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3<html xmlns="http://www.w3.org/1999/xhtml" 4 xmlns:ui="http://java.sun.com/jsf/facelets" 5 xmlns:h="http://java.sun.com/jsf/html" 6 xmlns:f="http://java.sun.com/jsf/core"> 7 8 <ui:composition template="/template.xhtml"> 9 <ui:define name="title"> 10 <h:outputText value="#{bundle.ViewBeslagslisterTitle}"></h:outputText> 11 </ui:define> 12 <ui:define name="body"> 13 <h:panelGroup id="messagePanel" layout="block"> 14 <h:messages errorStyle="color: red" infoStyle="color: green" layout="table"/> 15 </h:panelGroup> 16 <h:form> 17 <h:panelGrid columns="2"> 18 <h:outputText value="#{bundle.ViewBeslagslisterLabel_IDBeslagsliste}"/> 19 <h:outputText value="#{beslagslisterController.selected.IDBeslagsliste}" title="#{bundle.ViewBeslagslisterTitle_IDBeslagsliste}"/> 20 <h:outputText value="#{bundle.ViewBeslagslisterLabel_beslagnavn}"/> 21 <h:outputText value="#{beslagslisterController.selected.beslagnavn}" title="#{bundle.ViewBeslagslisterTitle_beslagnavn}"/> 22 <h:outputText value="#{bundle.ViewBeslagslisterLabel_overflate}"/> 23 <h:outputText value="#{beslagslisterController.selected.overflate}" title="#{bundle.ViewBeslagslisterTitle_overflate}"/> 24 <h:outputText value="#{bundle.ViewBeslagslisterLabel_montert}"/> 25 <h:outputText value="#{beslagslisterController.selected.montert}" title="#{bundle.ViewBeslagslisterTitle_montert}"/> 26 <h:outputText value="#{bundle.ViewBeslagslisterLabel_sistendret}"/> 27 <h:outputText value="#{beslagslisterController.selected.sistendret}" title="#{bundle.ViewBeslagslisterTitle_sistendret}"> 28 <f:convertDateTime pattern="MM/dd/yyyy HH:mm:ss" /> 29 </h:outputText> 30 <h:outputText value="#{bundle.ViewBeslagslisterLabel_montertavfk}"/> 31 <h:outputText value="#{beslagslisterController.selected.montertavfk}" title="#{bundle.ViewBeslagslisterTitle_montertavfk}"/> 32 <h:outputText value="#{bundle.ViewBeslagslisterLabel_doridfk}"/> 33 <h:outputText value="#{beslagslisterController.selected.doridfk}" title="#{bundle.ViewBeslagslisterTitle_doridfk}"/> 34 <h:outputText value="#{bundle.ViewBeslagslisterLabel_kategoriidfk}"/> 35 <h:outputText value="#{beslagslisterController.selected.kategoriidfk}" title="#{bundle.ViewBeslagslisterTitle_kategoriidfk}"/> 36 </h:panelGrid> 37 <br /> 38 <h:commandLink action="#{beslagslisterController.destroyAndView}" value="#{bundle.ViewBeslagslisterDestroyLink}"/> 39 <br /> 40 <br /> 41 <h:link outcome="Edit" value="#{bundle.ViewBeslagslisterEditLink}"/> 42 <br /> 43 <h:commandLink action="#{beslagslisterController.prepareCreate}" value="#{bundle.ViewBeslagslisterCreateLink}" /> 44 <br /> 45 <h:commandLink action="#{beslagslisterController.prepareList}" value="#{bundle.ViewBeslagslisterShowAllLink}"/> 46 <br /> 47 <br /> 48 <h:link outcome="/index" value="#{bundle.ViewBeslagslisterIndexLink}"/> 49 50 </h:form> 51 </ui:define> 52 </ui:composition> 53 54</html>