Skip to content
Snippets Groups Projects
Select Git revision
  • d44fdc3fdd5934dd91aee9197b7c2f5075cbc5f7
  • master default
  • object
  • develop protected
  • private_algos
  • cuisine
  • SMOTE
  • revert-76c4cca5
  • archive protected
  • no_graphviz
  • 0.0.1
11 results

MinCQGraalpy.py

Blame
  • addPerson.xhtml 827 B
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:p="http://primefaces.org/ui">
    
    <h:head></h:head>
    
    <h:body>
        <div class="card">
            <h:form>
                <h3 class="p-mt-0">Add a person</h3>
                <p:growl id="growl" for="growl-id" showDetail="true" skipDetailIfEqualsSummary="true"/>
                <h:panelGrid columns="3" cellpadding="7">
                    <p:outputLabel for="fieldName" value="Name"/>
                    <p:inputText id="fieldName" value="#{addPersonView.newPerson.name}"/>
                    <p:message for="fieldName"/>
                    <p:commandButton value="Save" ajax="false" icon="pi pi-check" validateClient="true" styleClass="p-mr-3" action="#{addPersonView.addPerson}"/>
                </h:panelGrid>
            </h:form>
        </div>
    </h:body>
    </html>