/web/beslagslister/View.xhtml

https://bitbucket.org/mgyth/server2 · 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. <ui:composition template="/template.xhtml">
  8. <ui:define name="title">
  9. <h:outputText value="#{bundle.ViewBeslagslisterTitle}"></h:outputText>
  10. </ui:define>
  11. <ui:define name="body">
  12. <h:panelGroup id="messagePanel" layout="block">
  13. <h:messages errorStyle="color: red" infoStyle="color: green" layout="table"/>
  14. </h:panelGroup>
  15. <h:form>
  16. <h:panelGrid columns="2">
  17. <h:outputText value="#{bundle.ViewBeslagslisterLabel_IDBeslagsliste}"/>
  18. <h:outputText value="#{beslagslisterController.selected.IDBeslagsliste}" title="#{bundle.ViewBeslagslisterTitle_IDBeslagsliste}"/>
  19. <h:outputText value="#{bundle.ViewBeslagslisterLabel_beslagnavn}"/>
  20. <h:outputText value="#{beslagslisterController.selected.beslagnavn}" title="#{bundle.ViewBeslagslisterTitle_beslagnavn}"/>
  21. <h:outputText value="#{bundle.ViewBeslagslisterLabel_overflate}"/>
  22. <h:outputText value="#{beslagslisterController.selected.overflate}" title="#{bundle.ViewBeslagslisterTitle_overflate}"/>
  23. <h:outputText value="#{bundle.ViewBeslagslisterLabel_montert}"/>
  24. <h:outputText value="#{beslagslisterController.selected.montert}" title="#{bundle.ViewBeslagslisterTitle_montert}"/>
  25. <h:outputText value="#{bundle.ViewBeslagslisterLabel_sistendret}"/>
  26. <h:outputText value="#{beslagslisterController.selected.sistendret}" title="#{bundle.ViewBeslagslisterTitle_sistendret}">
  27. <f:convertDateTime pattern="MM/dd/yyyy HH:mm:ss" />
  28. </h:outputText>
  29. <h:outputText value="#{bundle.ViewBeslagslisterLabel_montertavfk}"/>
  30. <h:outputText value="#{beslagslisterController.selected.montertavfk}" title="#{bundle.ViewBeslagslisterTitle_montertavfk}"/>
  31. <h:outputText value="#{bundle.ViewBeslagslisterLabel_doridfk}"/>
  32. <h:outputText value="#{beslagslisterController.selected.doridfk}" title="#{bundle.ViewBeslagslisterTitle_doridfk}"/>
  33. <h:outputText value="#{bundle.ViewBeslagslisterLabel_kategoriidfk}"/>
  34. <h:outputText value="#{beslagslisterController.selected.kategoriidfk}" title="#{bundle.ViewBeslagslisterTitle_kategoriidfk}"/>
  35. </h:panelGrid>
  36. <br />
  37. <h:commandLink action="#{beslagslisterController.destroyAndView}" value="#{bundle.ViewBeslagslisterDestroyLink}"/>
  38. <br />
  39. <br />
  40. <h:link outcome="Edit" value="#{bundle.ViewBeslagslisterEditLink}"/>
  41. <br />
  42. <h:commandLink action="#{beslagslisterController.prepareCreate}" value="#{bundle.ViewBeslagslisterCreateLink}" />
  43. <br />
  44. <h:commandLink action="#{beslagslisterController.prepareList}" value="#{bundle.ViewBeslagslisterShowAllLink}"/>
  45. <br />
  46. <br />
  47. <h:link outcome="/index" value="#{bundle.ViewBeslagslisterIndexLink}"/>
  48. </h:form>
  49. </ui:define>
  50. </ui:composition>
  51. </html>