diff roundup/templates/classic/htmlbase.py @ 192:01a910e17403

finished off colourising the classic template
author Richard Jones <richard@users.sourceforge.net>
date Fri, 03 Aug 2001 01:19:43 +0000
parents 2775f6727070
children 30c3a37b699f
line wrap: on
line diff
--- a/roundup/templates/classic/htmlbase.py	Fri Aug 03 00:59:47 2001 +0000
+++ b/roundup/templates/classic/htmlbase.py	Fri Aug 03 01:19:43 2001 +0000
@@ -74,10 +74,6 @@
 issueDOTitem = """<!-- dollarId: issue.item,v 1.3 2001/07/30 08:12:17 richard Exp dollar-->
 <table border=0 cellspacing=0 cellpadding=2>
 
-<tr class="strong-header">
-  <td colspan=4>Item Information</td>
-</td>
-
 <tr  bgcolor="ffffea">
     <td width=1% nowrap align=right><span class="form-label">Title</span></td>
     <td colspan=3 class="form-text"><display call="field('title', size=80)"></td>
@@ -115,29 +111,37 @@
     <td colspan=3 class="form-text"><display call="submit()"></td>
 </tr>
 
-<tr class="strong-header">
+<tr class="msg-header">
     <td colspan=4><b>Messages</b></td>
 </tr>
 <property name="messages">
-<tr>            
+<tr>
     <td colspan=4><display call="list('messages')"></td>
 </tr>
 </property>
 
-<tr class="strong-header">
+<tr class="file-header">
   <td colspan=4><b>Files</b></td>
 </tr>
 <tr class="form-help">
  <td colspan=4>
-   <a href="newfile?:multilink=issue<display call="plain('id')">:files">Attach a file to this issue</a>
+   <a href="newfile?:multilink=issue<display
+call="plain('id')">:files">Attach a file to this issue</a>
  </td>
 </tr>
 <property name="files">
- <tr>            
+ <tr>
      <td colspan=4><display call="list('files')"></td>
  </tr>
 </property>
 
+<tr class="history-header">
+    <td colspan=4><b>History</b></td>
+</tr>
+<tr>
+    <td colspan=4><display call="history()"></td>
+</tr>
+
 </table>
 
 """
@@ -276,6 +280,30 @@
   color: #ffffff;
 }
 
+.msg-header {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 12pt;
+  font-weight: bold;
+  background-color: #EE71AC;
+  color: #ffffff;
+}
+
+.file-header {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 12pt;
+  font-weight: bold;
+  background-color: #41BE62;
+  color: #ffffff;
+}   
+
+.history-header {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 12pt;
+  font-weight: bold;
+  background-color: #739DEE;
+  color: #ffffff;
+}
+
 .list-header {
   background-color: #aaccff;
   color: #000000;

Roundup Issue Tracker: http://roundup-tracker.org/