root/webmanagement/templates/project_request/bs_template.html

Revision 133, 3.1 kB (checked in by bettse, 1 year ago)

add new topnav bar to request page

  • Property svn:executable set to *
Line 
1 <!DOCTYPE html
2     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 <head>
6 <title>{% block title %}{% endblock %}</title>
7 <link rel="stylesheet" href="/projects/admin/chrome/common/css/trac.css" type="text/css" />
8 <link rel="stylesheet" href="/projects/admin/chrome/common/css/bs.css" type="text/css" />
9 <link rel="icon" href="/projects/admin/chrome/common/trac.ico" type="image/x-icon" />
10 <style type="text/css">
11     td label { font-weight: bold; display: block; }
12     td { vertical-align: top; border-top: solid thin black; padding-bottom: 8px; margin: 0px; }
13     select { min-width: 200px; }
14 </style>
15 <script language="JavaScript">
16 //here you place the ids of every element you want.
17
18 function CheckChange(id){       
19         if(id != 'I') {
20                 showdiv('dept');
21                 hidediv('term');
22         }
23         if(id == 'C') {
24                 showdiv('term');  //show term as well as already showing dept
25         }
26         if(id == 'I'){
27                 hidediv('dept');
28                 hidediv('term');
29         }
30 }
31
32 function hidediv(id) {
33         //safe function to hide an element with a specified id
34         if (document.getElementById) { // DOM3 = IE5, NS6
35                 document.getElementById(id).style.display = 'none';
36         }
37         else {
38                 if (document.layers) { // Netscape 4
39                         document.id.display = 'none';
40                 }
41                 else { // IE 4
42                         document.all.id.style.display = 'none';
43                 }
44         }
45 }
46
47 function showdiv(id) {
48         //safe function to show an element with a specified id
49                   
50         if (document.getElementById) { // DOM3 = IE5, NS6
51                 document.getElementById(id).style.display = '';
52         }
53         else {
54                 if (document.layers) { // Netscape 4
55                         document.id.display = '';
56                 }
57                 else { // IE 4
58                         document.all.id.style.display = '';
59                 }
60         }
61 }
62 </script>
63  <script type="text/javascript" src="http://beaversource.oregonstate.edu/projects/admin/chrome/common/js/trac.js"></script>
64 </head>
65 <body>
66 <script src="/social/mod/toolbar/js.php"></script>
67 <div style="float:right">
68 <img src="http://beaversource.oregonstate.edu/projects/admin/chrome/site/wordmark.gif" />
69
70 </div>
71
72 <div id="banner">
73
74 <div id="header"><a id="logo" href="http://beaversource.oregonstate.edu/projects/"><img src="http://beaversource.oregonstate.edu/projects/admin/chrome/site/logo.png" alt="" /></a><hr /></div>
75
76 <div id="metanav" class="nav">
77 <ul>
78 <li class="last"> </li>
79 </ul>
80 </div>
81
82 <div id="mainnav" class="nav">
83
84 <ul>
85 <li class="first"><a accesskey="1" href="/social/content/About">About Beaversource</a></li>
86 </ul>
87
88 </div>
89
90
91 {% block content %}{% endblock %}
92
93
94 <!--
95 <div id="altlinks">
96 <h3>Download in other formats:</h3>
97 <ul>
98 <li class="first last"><a href="/projects/?hdfdump=1">Plain Text</a></li>
99 </ul>
100 </div>-->
101
102
103 <div id="footer">
104  <hr />
105
106  <a id="tracpowered" href="http://trac.edgewall.org/"><img src="http://beaversource.oregonstate.edu/projects/admin/chrome/common/trac_logo_mini.png" height="30" width="107"
107    alt="Trac Powered"/></a>
108  <p class="left">
109   Powered by <a href="/projects/admin/about"><strong>Trac 0.10.3</strong></a><br />
110   By <a href="http://www.edgewall.org/">Edgewall Software</a>.
111  </p>
112  <p class="right">
113   Visit the Trac open source project at<br /><a href="http://trac.edgewall.org/">http://trac.edgewall.org/</a>
114
115  </p>
116 </div>
117
118
119 </body></html>
Note: See TracBrowser for help on using the browser.