Changeset 8308 for mauRepo/MolesManager
- Timestamp:
- 10/05/12 13:32:25 (8 years ago)
- Location:
- mauRepo/MolesManager/trunk/src/MolesManager
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/MolesManager/trunk/src/MolesManager/static/templates/cedaBrowse.html
r8307 r8308 75 75 // setup tabs 76 76 $( "#tabs" ).tabs(); 77 // setup accordian 78 $( "#accordion1" ).accordion(); 77 79 78 80 // setup openlayers map … … 147 149 148 150 <div id="map" style="width: 230px; height: 150px"></div> 149 150 <p> 151 <!-- 152 <p> 153 --> 154 <div id="accordion1"> 155 <!-- 151 156 <textarea readonly="readonly" width="100%" cols="26" rows="5" style="overflow=y:scroll"> 157 --> 158 <h3><a href="#">Phenomenom</a></h3> 159 <div> 152 160 Phenomenon begin : {{ phenomenon_begin_year }}-{{ phenomenon_begin_month }}-{{ phenomenon_begin_day }} 153 161 Phenomenon end : {{ phenomenon_end_year }}-{{ phenomenon_end_month }}-{{ phenomenon_end_day }} 162 </div> 163 <h3><a href="#">Resolution And Extends</a></h3> 164 <div> 165 <textarea readonly="readonly" width="100%" cols="26" rows="7" style="overflow=y:scroll"> 166 154 167 Resolution : {{ resolution }} 155 168 Vertical Extent : … … 157 170 {{ ve }} 158 171 {% endfor %} 159 </textarea> 160 </p> 172 Bounding Box 173 N : {{ geographic_extentN }} 174 175 W : {{ geographic_extentW }} E : {{ geographic_extentE }} 176 177 S : {{ geographic_extentS }} 178 179 </textarea> 180 </div> 181 </div> 182 <!-- 183 </p> 184 -->: 161 185 </div> 162 186 <div class="grid_9"> -
mauRepo/MolesManager/trunk/src/MolesManager/views/cedaBrowse.py
r8307 r8308 43 43 c['lineage'] = record.dataLineage; 44 44 c['archive_no_files'] = record.result.numberOfFiles 45 c['geographic_extentE'] = record.geographicExtent[0].eastBoundLongitude 46 c['geographic_extentW'] = record.geographicExtent[0].westBoundLongitude 47 c['geographic_extentN'] = record.geographicExtent[0].northBoundLatitude 48 c['geographic_extentS'] = record.geographicExtent[0].southBoundLatitude 45 49 lk = [] 46 50 for l in record.result.source:
Note: See TracChangeset
for help on using the changeset viewer.