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

Last change on this file since 792 was 113, checked in by rboipsl, 13 years ago

Import du projet NDACC _ module web

File size: 898 bytes
Line 
1<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
2<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3
4<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
5
6<html>
7<head>
8        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
9        <title>Ether: NDACC</title>
10</head>
11
12<body>
13
14youpiiii !!!
15<br>
16
17<br>
18${instruments[0].name}
19<br>
20${instruments[0].id}
21<br>
22${instruments[0].type}
23<br>
24${instruments[0].station}
25<br>
26${instruments[0].station.id}
27<br>
28${instruments[0].station.name}
29
30<ul>
31<c:forEach items="${instruments}" var="instrument">
32        <li>${instrument.id}</li>
33        <li>${instrument.name}</li>
34        <li>${instrument.type}</li>
35        <li><a href="<c:url value="station?methodName=viewStation&stationId=${instrument.station.id}"/>">${instrument.station.name}</a></li>
36        <br>
37</c:forEach>
38</ul>
39
40</body>
41</html>
Note: See TracBrowser for help on using the repository browser.