source: ether_ndacc/trunk/web/visus_ecc_realtime.jsp @ 792

Last change on this file since 792 was 792, checked in by npipsl, 10 years ago

Mise à jour menu deroulant pour les ecc real time ohp : suppression de 2013

File size: 3.9 KB
Line 
1<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
2<%@ taglib prefix="ether" tagdir="/WEB-INF/tags" %>
3<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
4<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
5
6<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
7
8<html>
9<head>
10
11        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
12
13        <link rel="stylesheet" type="text/css" href="./resources/css/ndacc.css">
14               
15       
16        <title>OHP ECC REALTIME PLOTS</title>
17         
18        <meta name="generator" content="TYPO3 4.1 CMS" />
19        <script type="text/javascript" src="<c:url value="./resources/css/etherTypo.js"/>">
20       
21        </script>
22</head>
23
24<body class=plein>
25<form name="thisForm">
26<table cellpadding="2" cellspacing="2" border=0 width=100%>
27<input type="hidden" value="selectEccRT" name="methodName">
28<input type="hidden" value="ECC" name="instrument">
29<input type="hidden" value="${station}" name="station">
30<input type="hidden" value="rt" name="type">
31<input type="hidden" value="${firstDate}" id="di" name="dateinf">     <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
32<%@ taglib prefix="ether" tagdir="/WEB-INF/tags" %>
33<tr>
34
35<td width=90px height=5 class=blanc1>${station} OZONE SONDE REALTIME</td>
36<td width=50px  class=blanc2 align=right><spring:message code="annee"/>&nbsp;
37<select id="year" onChange='loadVisus()'>
38    <option value='2014' <c:if test="${year == '2014'}">selected</c:if> >2014</option>
39    <!--<option value='2013' <c:if test="${year == '2013'}">selected</c:if> >2013</option>-->
40</select>
41</td>
42
43<td width=50px class=blanc2 align=left><spring:message code="mois"/>&nbsp;
44<select id="month" onChange='loadVisus()'>
45        <option value='01' <c:if test="${month == '01'}">selected</c:if> ><spring:message code="janvier"/></option>
46        <option value='02' <c:if test="${month == '02'}">selected</c:if> ><spring:message code="fevrier"/></option>
47        <option value='03' <c:if test="${month == '03'}">selected</c:if> ><spring:message code="mars"/></option>
48        <option value='04' <c:if test="${month == '04'}">selected</c:if> ><spring:message code="avril"/></option>
49        <option value='05' <c:if test="${month == '05'}">selected</c:if> ><spring:message code="mai"/></option>
50        <option value='06' <c:if test="${month == '06'}">selected</c:if> ><spring:message code="juin"/></option>
51        <option value='07' <c:if test="${month == '07'}">selected</c:if> ><spring:message code="juillet"/></option>
52        <option value='08' <c:if test="${month == '08'}">selected</c:if> ><spring:message code="aout"/></option>
53        <option value='09' <c:if test="${month == '09'}">selected</c:if> ><spring:message code="septembre"/></option>
54        <option value='10' <c:if test="${month == '10'}">selected</c:if> ><spring:message code="octobre"/></option>
55        <option value='11' <c:if test="${month == '11'}">selected</c:if> ><spring:message code="novembre"/></option>
56        <option value='12' <c:if test="${month == '12'}">selected</c:if> ><spring:message code="decembre"/></option>
57</select>
58
59</tr>
60</table>
61<table width=100%>
62<tr>
63<td class=ciel width=200px colspan=5 valign=top>
64<table cellpadding="2" cellspacing="2" border=0>
65
66<c:choose>
67        <c:when test="${plotsList=='[]'}"><tr><td class="rougeb"><spring:message code="noplot.period"/></td></tr>
68        </c:when>
69        <c:otherwise>
70                <c:forEach items="${plotsList}" var="plot" varStatus="status">
71                <c:choose>
72                <c:when test="${(status.index) % 5 == 0}"><tr>
73                </c:when>
74                </c:choose>
75       
76                <td align=center valign=top><a href="#" onclick="OuvrirFeuilleDynPL ('${rep}/${plot}');"><img border=2 width=100 height=120 src="${rep}/${plot}"></img></a></td>
77       
78                <c:choose>
79                <c:when test="${(status.index+1) % 5 == 0}"></tr>
80                </c:when>
81                </c:choose>
82                </c:forEach>
83
84                <c:choose>
85                <c:when test="${(status.index+1) % 5 != 0}"></tr>
86                </c:when>
87                </c:choose>
88
89        </c:otherwise>
90</c:choose>
91</table>
92</td>
93
94
95</tr>
96
97
98
99<tr>
100<td height=500px>&nbsp;</td>
101</tr>
102</table>
103</form>
104</body>
105</html>
Note: See TracBrowser for help on using the repository browser.