Skip to content
Snippets Groups Projects
Select Git revision
  • 568cf30a95f4e02efeefe9dd272aceebf355245d
  • master default protected
  • johannes
  • partial_parser
  • Aloui_Dary
  • ignore_punct
  • AC
  • classifier
  • fixhelp
  • libmacaon2
  • error_predictor
  • morpho
  • ssrnn
  • tfparsing
  • silvio
  • tagger_options
  • maca_trans_frame_parser
  • alexis
  • new_config
  • tagparse
  • maca_graph_parser
21 results

movements.c

Blame
  • index.xhtml 717 B
    <!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:p="http://primefaces.org/ui"
          xml:lang="en">
    
    <h:head>
        <title>Person list</title>
    </h:head>
    
    <h:body>
        <h3 style="text-align: center"><h:outputText value="#{viewPersonBean.message}"/></h3>
    
        <div class="card">
            <p:dataTable var="person" value="#{viewPersonBean.persons}" lazy="true">
                <p:column headerText="UUID">
                    <h:outputText value="#{person.uuid}"/>
                </p:column>
    
                <p:column headerText="Name">
                    <h:outputText value="#{person.name}"/>
                </p:column>
            </p:dataTable>
        </div>
    
    </h:body>
    </html>