1 | {% extends "base.html" %} |
---|
2 | |
---|
3 | {% block extra_head %} |
---|
4 | <script src="http://openlayers.org/api/2.10/OpenLayers.js"></script> |
---|
5 | <link rel="stylesheet" href="http://openlayers.org/dev/theme/default/style.css" type="text/css"> |
---|
6 | <dc id="dublinCoreHolder_id"></dc> |
---|
7 | <script type="text/javascript"> |
---|
8 | require(['dojo/ready', 'ceda/cedaObservation'], |
---|
9 | function(ready, cedaObservation){ |
---|
10 | ready(function(){ |
---|
11 | cedaObservation.doInit(); |
---|
12 | }) |
---|
13 | }); |
---|
14 | </script> |
---|
15 | {% endblock %} |
---|
16 | |
---|
17 | {% block title %} |
---|
18 | {% endblock %} |
---|
19 | |
---|
20 | {% block main %} |
---|
21 | <input type="hidden" name="coObs" id="old_coObs_id" value='{{ coObs }}' /> |
---|
22 | <input type="hidden" name="new_coObs" id="coObs_id" value='{{ new_coObs }}' /> |
---|
23 | |
---|
24 | |
---|
25 | <div class="grid_12 whiteFill"> |
---|
26 | <div class="grid_2"> |
---|
27 | <div id="cedaObsLogo"></div> |
---|
28 | <div id='pubDetails_id'></div> |
---|
29 | </div> |
---|
30 | <div class = "grid_9"> |
---|
31 | <div id="title_id"></div> |
---|
32 | </div> |
---|
33 | </div> |
---|
34 | |
---|
35 | <div id = "upper_section" class="grid_12 whiteFill"> |
---|
36 | <div class="grid_4 cedaObs" id="middleLeft cedaObs"> |
---|
37 | <script type="text/javascript"> |
---|
38 | require(["dojo/parser", "dijit/layout/AccordionContainer", "dijit/layout/ContentPane"]); |
---|
39 | </script> |
---|
40 | |
---|
41 | <div data-dojo-type="dijit.layout.AccordionContainer"> |
---|
42 | <div data-dojo-type="dijit.layout.ContentPane" title="Download & Services" selected="true"> |
---|
43 | <div id="datalink_id"><p>Links to download and data services </p></div> |
---|
44 | </div> |
---|
45 | <div data-dojo-type="dijit.layout.ContentPane" title="Apply for Access"> |
---|
46 | <div id="access_id">Access to these data may be restricted</div> |
---|
47 | </div> |
---|
48 | <div data-dojo-type="dijit.layout.ContentPane" title="Help"> |
---|
49 | <div id="help_id">For assistance contact <a href="mailto:support@ceda.ac.uk">support@ceda.ac.uk</a></div> |
---|
50 | </div> |
---|
51 | </div> |
---|
52 | <div id="bbox_id"></div> |
---|
53 | <div style="width:300px; height:175px" id="map" class="smallmap"></div> |
---|
54 | <div id="resultTime_id"></div> |
---|
55 | <div id='updateFreq_id'></div> |
---|
56 | </div> |
---|
57 | <div class="grid_7 cedaObs" id="middleMiddle"> |
---|
58 | <div class="grid_7 alpha" id="description"> |
---|
59 | <div id="citation_id"></div> |
---|
60 | <div id="pastCitation_id"></div> |
---|
61 | <div id="keywords_id"></div> |
---|
62 | <div id="description_id"></div> |
---|
63 | <div id="project_id"></div> |
---|
64 | <br /> |
---|
65 | </div><!-- End of div description --> |
---|
66 | <!-- <div class="grid_5 omega" id="news"> --> |
---|
67 | <!-- <p>News bar</p> --> |
---|
68 | <!-- </div><!-- End of div news --> |
---|
69 | </div> |
---|
70 | </div> |
---|
71 | <!-- End of div upper_right --> |
---|
72 | <!-- End of div upper_section --> |
---|
73 | |
---|
74 | <div id="lower_section" class="grid_12 whiteFill"> |
---|
75 | <div class="grid_8 push_2 alpha"> |
---|
76 | <h5>Additional Information</h5> |
---|
77 | </div> |
---|
78 | <div id="lower_tab1" style="height:300px" class="grid_8 push_2 cedaObs"> |
---|
79 | |
---|
80 | <!-- will host all tabs and their content panes --> |
---|
81 | |
---|
82 | <div id="tabContainer"> |
---|
83 | |
---|
84 | </div> |
---|
85 | |
---|
86 | |
---|
87 | </div> <!-- End of div lower_side --> |
---|
88 | </div> <!-- End of div lower_section --> |
---|
89 | <div class="corner-content-1col-bottom"></div> |
---|
90 | |
---|
91 | {% endblock %} |
---|