source: tapas/web/project/formTapas.jsp @ 413

Last change on this file since 413 was 406, checked in by vmipsl, 12 years ago

gestion langues fr/en

File size: 1.5 KB
Line 
1<%@ page import="com.ether.WebException" %>
2<%@ page contentType="text/html;charset=UTF-8" language="java" %>
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
7<tiles:insert page="/resources/templates/templateEther.jsp" flush="true">
8
9    <tiles:put name="insertCss" type="string"/>
10    <tiles:put name="insertJsOrJsp" type="string">
11        <ether:htmlJs jsFile="library/jquery.json-2.3"/>
12        <ether:htmlJsp jspFile="formTapas_script"/>
13    </tiles:put>
14
15    <tiles:put name="title" type="string"><spring:message code="app.title"/> - <spring:message code="title.home"/></tiles:put>
16    <tiles:put name="nav" type="string"><a href=""><spring:message code="label.home"/></a></tiles:put>
17
18
19    <%-- ****************** CONTENT ****************** --%>
20    <tiles:put name="bodytitle" type="string"><spring:message code="title.home"/></tiles:put>
21
22    <tiles:put name="body" type="string">
23
24        <div id="formulaire">
25
26        </div>
27
28        <div id="errors"></div>
29
30        <script type="text/javascript">
31            var tapasTexts = $A( "" );
32            tapasTexts["label.submitButton"] = '<spring:message code="label.submitButton"/>';
33            tapasTexts["<%=WebException.WebCode.ERROR_JSON_TAPAS_IS_NULL%>"] = "<spring:message code="error.ERROR_JSON_TAPAS_IS_NULL"/>";
34
35            var interfaceTapas = new InterfaceTapas();
36        </script>
37
38    </tiles:put>
39
40</tiles:insert>
Note: See TracBrowser for help on using the repository browser.