comparison src/main/webapp/superuser.xhtml @ 10:a50cf11e5178

Rewrite LGDataverse completely upgrading to dataverse4.0
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 08 Sep 2015 17:00:21 +0200
parents
children
comparison
equal deleted inserted replaced
9:5926d6419569 10:a50cf11e5178
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml"
3 xmlns:h="http://java.sun.com/jsf/html"
4 xmlns:f="http://java.sun.com/jsf/core"
5 xmlns:ui="http://java.sun.com/jsf/facelets"
6 xmlns:jsf="http://xmlns.jcp.org/jsf"
7 xmlns:p="http://primefaces.org/ui">
8
9 <h:head>
10 </h:head>
11
12 <h:body>
13 <ui:composition template="/dataverse_template.xhtml">
14 <ui:param name="pageTitle" value="Superuser - #{dataverseServiceBean.findRootDataverse().name} #{bundle.dataverse}"/>
15 <ui:param name="showDataverseHeader" value="false"/>
16 <ui:define name="body">
17 <h:form id="indexAllForm">
18 <div>
19 <button class="btn btn-default" jsf:action="#{SuperUserPage.startIndexAll()}">
20 Index All
21 </button>
22 <button class="btn btn-default" jsf:action="#{SuperUserPage.updateIndexAllStatus()}">
23 Check Status of Index All
24 </button>
25 <br/>
26 ${SuperUserPage.indexAllStatus}
27 </div>
28 </h:form>
29 </ui:define>
30 </ui:composition>
31 </h:body>
32 </html>