root/ossiedev/branches/jsnyder/trunk/tools/cornetApps/templates/HtmlPages/ossie.html @ 11093

Revision 11093, 1.7 KB (checked in by edent, 15 months ago)

move divs around and connect to webServer from local development

  • Property svn:executable set to *
Line 
1{% extends "base.html"%}
2{%block title%}OSSIE for the Web{%endblock%}
3{%block header%}
4<link href="{{STATIC_URL}}frames.css" rel="stylesheet" type="text/css"/>
5<script src="{{STATIC_URL}}jquery.js" type="text/javascript"></script>
6<script src="{{STATIC_URL}}frames.js" type="text/javascript"></script>
7{%endblock%}
8{%block content%}
9 <div id="column_left">
10  <div id="left_top">
11         <a href="{{MEDIA_URL}}"><img src="{{STATIC_URL}}pics/home.png" title="Home"/></a>
12         <a href="{{MEDIA_URL}}/logout/"><img src="{{STATIC_URL}}pics/logout.png" title="Logout"/></a>
13         
14         &nbsp;&nbsp;&nbsp;&nbsp;
15         
16         Select view: <select name="view_type" onchange='javascript:loadHrefToDiv("#console",this.value);'>
17        <option id="currentView" value="{{MEDIA_URL}}/grid/">Grid View</option>
18        <option value="{{MEDIA_URL}}/map/1/">Floor 1 View</option>
19        <option value="{{MEDIA_URL}}/map/2/">Floor 2 View</option>
20        <option value="{{MEDIA_URL}}/map/3/">Floor 3 View</option>
21        <option value="{{MEDIA_URL}}/map/4/">Floor 4 View</option>
22     </select>
23     <div id="console">
24        </div> 
25     {#end menu div#}
26  </div><!--end #left_top-->
27  <div id="left_bottom">
28   <p>Active Applications <a href="#" title="/WebDash/running/" class="ajax"><img src="{{STATIC_URL}}pics/refresh.png" title="Refresh Active Applications"/></a></p>
29   <div id="apps"></div>
30  </div><!--end #left_bottom-->
31 </div><!--end #column_left-->
32 <div id="column_right">
33 <div id="right_top">
34  <div id="directory">  </div>
35 </div><!--end #right_top-->
36  <div id="right_bottom">
37        <div id="workspace" class="tabs-container">Work space </div>
38    <br/>
39      </div><!--end #right_bottom-->
40 </div><!--end #column_right-->
41{%endblock%}
Note: See TracBrowser for help on using the browser.