Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 832 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
userInfoViewPanelGrid.xhtml 2.27 KiB
<?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">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:p="http://primefaces.org/ui"
                xmlns:ui="http://xmlns.jcp.org/jsf/facelets">

    <ui:param name="userInfoObject" value="#{userInfoController.selected}"/>
    <p:panelGrid columns="2" styleClass="viewEntityDetails">
        
        <h:outputLabel for="badge" value="Badge" styleClass="entityDataEmphasizedLabel"/>
        <h:outputText id="badge" value="#{userInfoObject.badge}" title="Badge" styleClass="entityDataEmphasizedText"/>
        
        <h:outputLabel for="username" value="Username" styleClass="entityDataEmphasizedLabel"/>
        <h:outputText id="username" value="#{userInfoObject.username}" title="Username" styleClass="entityDataEmphasizedText"/>

        <h:outputLabel for="lastName" value="Last Name" styleClass="entityDataLabel"/>
        <h:outputText id="lastName" value="#{userInfoObject.lastName}" title="Last Name" styleClass="entityDataText"/>

        <h:outputLabel for="firstName" value="First Name" styleClass="entityDataLabel"/>
        <h:outputText id="firstName" value="#{userInfoObject.firstName}" title="First Name" styleClass="entityDataText"/>

        <h:outputLabel for="middleName" value="Middle Name" styleClass="entityDataLabel"/>
        <h:outputText id="middleName" value="#{userInfoObject.middleName}" title="Middle Name" styleClass="entityDataText"/>

        <h:outputLabel for="email" value="Email" styleClass="entityDataLabel"/>
        <h:outputText id="email" value="#{userInfoObject.email}" title="Email" styleClass="entityDataText"/>
        
        <h:outputLabel for="globusUsername" value="Globus Username" styleClass="entityDataLabel"/>
        <h:outputText id="globusUsername" value="#{userInfoObject.globusUsername}" title="Globus Username" styleClass="entityDataText"/>
        
        <h:outputLabel for="description" value="Description" styleClass="entityDataLabel"/>
        <h:outputText id="description" value="#{userInfoObject.description}" title="Description" styleClass="entityDataText"/>
        
    </p:panelGrid>

</ui:composition>