hs.hsadmin/hsarweb/webapp/domain/index.xhtml

46 lines
1.4 KiB
HTML

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<head>
<title>Hello World</title>
</head>
<body>
<ui:composition template="/templates/menu-template.xhtml">
<ui:param name="title" value="Hostsharing - Ihre Domains"/>
<ui:define name="content">
<f:view>
<h:dataTable var="dom" value="#{domain.list}">
<h:column>
<f:facet name="header">
<h:outputText value="#{domain.labels['name']}" />
</f:facet>
<h:outputText value="#{dom['name']}" />
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="#{domain.labels['user']}" />
</f:facet>
<h:outputText value="#{dom['user']}" />
</h:column>
<h:column>
<h:outputLink value="#{domain.urls['edit']}">
<h:outputText value="#{msgs.edit}" />
<f:param name="id" value="#{dom['id']}" />
</h:outputLink>
</h:column>
<h:column>
<h:outputLink value="#{domain.urls['delete']}">
<h:outputText value="#{msgs.delete}" />
<f:param name="id" value="#{dom['id']}" />
</h:outputLink>
</h:column>
</h:dataTable>
</f:view>
</ui:define>
</ui:composition>
</body>
</html>