# HG changeset patch # User Julien Jehannet # Date 1256728741 -3600 # Node ID c741061d53483b6a3d145990dfc4e8c40be27979 # Parent ab776b2833cb8ad3f196c116646fcb4215909860 [B] views: fix wrong xhtml when empty rset diff -r ab776b2833cb -r c741061d5348 web/views/baseviews.py --- a/web/views/baseviews.py Tue Nov 03 13:54:07 2009 +0100 +++ b/web/views/baseviews.py Wed Oct 28 12:19:01 2009 +0100 @@ -251,16 +251,17 @@ listid = u' id="%s"' % listid else: listid = u'' - if title: - self.w(u'

%s

\n' % (listid, klass or 'section', title)) - self.w(u'\n') - if title: - self.w(u'\n') + if self.rset.rowcount: + if title: + self.w(u'

%s

\n' % (listid, klass or 'section', title)) + self.w(u'
    \n') + else: + self.w(u'\n' % (listid, klass or 'section')) + for i in xrange(self.rset.rowcount): + self.cell_call(row=i, col=0, vid=subvid, **kwargs) + self.w(u'
\n') + if title: + self.w(u'\n') def cell_call(self, row, col=0, vid=None, **kwargs): self.w(u'
  • ')