source: tapas/web/resources/templates/templateBackoffice.jsp @ 825

Last change on this file since 825 was 825, checked in by rboipsl, 9 years ago

changement logo
champs locality/lieu desactives
+modif sur tapas.css et bas page frontend
+ ajout textes info xml et one transmission

File size: 5.5 KB
Line 
1<%@ page contentType="text/html;charset=UTF-8" language="java" %>
2<%@ page import="com.ether.user.UserRole" %>
3<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
4<%@ taglib prefix="tiles" uri="/WEB-INF/tlds/struts-tiles.tld" %>
5<%@ taglib prefix="ether" tagdir="/WEB-INF/tags" %>
6<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
7
8
9
10<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
11
12<HTML>
13<HEAD>
14    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
15    <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
16
17    <title><tiles:getAsString name="title"/></title>
18
19
20    <link rel="shortcut icon" href="">
21
22    <ether:htmlCss cssFile="button"/>
23    <ether:htmlCss cssFile="complexButton"/>
24    <ether:htmlCss cssFile="TwitterLogin/front"/>
25    <ether:htmlCss cssFile="mainEther"/>
26    <ether:htmlCss cssFile="tapas"/>
27    <ether:htmlCss cssFile="backoffice"/>
28
29    <ether:htmlJs jsFile="library/jquery-1.4.2.min"/>
30    <ether:htmlJs jsFile="library/jquery.class"/>
31    <ether:htmlJs jsFile="library/jquery.protify-0.3"/>
32    <ether:htmlJs jsFile="classesForJQuery/etherHelper"/>
33    <ether:htmlJs jsFile="classesForJQuery/Button"/>
34    <ether:htmlJs jsFile="classesForJQuery/ComplexButton"/>
35    <ether:htmlJs jsFile="classesForJQuery/LoginButton"/>
36    <ether:htmlJs jsFile="TwitterLogin/javascripts/jquery.tipsy"/>
37
38    <ether:htmlJsp jspFile="templateBackoffice_script"/>
39
40    <tiles:insert attribute="insertCss"/>
41    <tiles:insert attribute="insertJsOrJsp"/>
42</HEAD>
43
44<BODY>
45
46<%-- ************************************************************************************************************** --%>
47<%-- *************************************************** LOGO ETHER *********************************************** --%>
48<%-- ************************************************************************************************************** --%>
49<div id="linkLogoEther" class="containerLinkLogoEther"></div>
50
51<div id="logoEther" class="containerLogoEther">
52    <a href="http://ether.ipsl.jussieu.fr" target="help"><img src="resources/images/logo_Ether.jpg" width="80px" height="80px"/></a>
53</div>
54
55
56<%-- ************************************************************************************************************** --%>
57<%-- **************************************************** WRAPPER ************************************************* --%>
58<%-- ************************************************************************************************************** --%>
59<div class="pageWrapper">
60
61    <%-- ****************** TITLE & TOOLS ****************** --%>
62    <div id="title_tools" class="containerTapas">
63        <div id="title"></div>
64
65        <div id="tools" align="right">
66            <div id="loginModule" align="right"></div>
67            <div id="menuBO" class="containerMenu"></div>
68        </div>
69
70    </div>
71
72    <%-- ****************** LOGO ****************** --%>
73    <div id="logo" class="containerLogo">
74       <a href="#"><img src="resources/images/logo_tapas.gif" height="60px" width="60px"></a>
75    </div>
76
77    <%-- ****************** MENU ****************** --%>
78    <!--<div id="menuBO" class="containerMenu"></div>-->
79
80    <%-- ****************** TITLE CONTENT ****************** --%>
81    <div id="titleContent" class="containerTitleContent"><tiles:insert attribute="bodytitle"/>
82        <div id="titleContentBorder" class="containerTitleContentBorder"></div>
83    </div>
84
85    <%-- ****************** CONTENT ****************** --%>
86    <div id="containerCenter" class="containerTapas containerCenter">
87        <tiles:insert attribute="body"/>
88    </div>
89
90    <%-- ****************** BOTTOM ****************** --%>
91    <div id="containerBottom" class="containerTapas containerBottom" align="right">
92        &copy; 2013 <a href="http://ether.ipsl.jussieu.fr" target="help">ETHER&nbsp;</a>/ CNRS
93    </div>
94
95</div>
96
97<script type="text/javascript">
98    var templateTexts = $A( "" );
99    templateTexts["app.home"] = '<spring:message code="label.home"/>';
100    templateTexts["bo.fulltitle"] = '<spring:message code="bo.fulltitle"/>';
101    templateTexts["bo.user"] = '<spring:message code="bo.user"/>';
102    templateTexts["bo.site"] = '<spring:message code="bo.site"/>';
103
104    // Needed texts if you use the library LoginButton.js
105    var loginTexts = $A( "" );
106    loginTexts["app.connexion"] = '<spring:message code="app.connexion"/>';
107    loginTexts["login"] = '<spring:message code="login"/>';
108    loginTexts["login.password"] = '<spring:message code="login.password"/>';
109    loginTexts["login.sign"] = '<spring:message code="login.sign"/>';
110    loginTexts["login.pwdForget"] = '<spring:message code="login.pwdForget"/>';
111    loginTexts["login.loginForget.help"] = '<spring:message code="login.loginForget.help"/>';
112    loginTexts["login.loginForget"] = '<spring:message code="login.loginForget"/>';
113    loginTexts["login.error.notFound"] = "<spring:message code='login.error.notFound'/>";
114    loginTexts["login.error.wrongPassword"] = "<spring:message code='login.error.wrongPassword'/>";
115    loginTexts["login.error.failed"] = "<spring:message code='login.error.failed'/>";
116    loginTexts["login.error.notAccepted"] = "<spring:message code='login.error.notAccepted'/>";
117
118    loginTexts["<%=UserRole.ADMINISTRATOR%>"] = '<spring:message code="label.role.administrator"/>';
119    loginTexts["<%=UserRole.USER%>"] = '<spring:message code="label.role.user"/>';
120
121    var interfaceTemplate = new InterfaceTemplate();
122</script>
123
124<div style="visibility:hidden"><a href="http://apycom.com/">Apycom jQuery Menus</a></div>
125
126</BODY>
127</HTML>
Note: See TracBrowser for help on using the repository browser.