Skip to content

Commit 7dca9cd

Browse files
author
Richard Jones
committed
fixed use of stylesheet
1 parent edd0149 commit 7dca9cd

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

roundup/htmltemplate.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: htmltemplate.py,v 1.4 2001-07-28 07:59:53 richard Exp $
1+
# $Id: htmltemplate.py,v 1.5 2001-07-28 08:17:09 richard Exp $
22

33
import os, re, StringIO, urllib, cgi, errno
44

@@ -610,8 +610,8 @@ def index(client, templates, db, classname, filterspec={}, filter=[],
610610
if value is None:
611611
value = '[empty %s]'%name
612612
l.append(value)
613-
w('<tr class="list-header">'
614-
'<td align=left colspan=%s><strong>%s</strong></td></tr>'%(
613+
w('<tr class="section-bar">'
614+
'<td align=middle colspan=%s><strong>%s</strong></td></tr>'%(
615615
len(columns), ', '.join(l)))
616616
old_group = this_group
617617

@@ -795,6 +795,10 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
795795

796796
#
797797
# $Log: not supported by cvs2svn $
798+
# Revision 1.4 2001/07/28 07:59:53 richard
799+
# Replaced errno integers with their module values.
800+
# De-tabbed templatebuilder.py
801+
#
798802
# Revision 1.3 2001/07/25 03:39:47 richard
799803
# Hrm - displaying links to classes that don't specify a key property. I've
800804
# got it defaulting to 'name', then 'title' and then a "random" property (first

0 commit comments

Comments
 (0)