[ui, index page] drop useless 'schema entities' table
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 20 Jan 2011 10:08:01 +0100
changeset 6855 84f600292b2e
parent 6854 ffc982faa264
child 6856 ac092197c099
[ui, index page] drop useless 'schema entities' table
web/views/startup.py
--- a/web/views/startup.py	Thu Jan 20 10:06:34 2011 +0100
+++ b/web/views/startup.py	Thu Jan 20 10:08:01 2011 +0100
@@ -120,10 +120,6 @@
             self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self._cw._('system entities'))
             self.entity_types_table(eschema for eschema in schema.entities()
                                 if uicfg.indexview_etype_section.get(eschema) == 'system')
-            if 'CWAttribute' in schema: # check schema support
-                self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self._cw._('schema entities'))
-                self.entity_types_table(eschema for eschema in schema.entities()
-                                        if uicfg.indexview_etype_section.get(eschema) == 'schema')
         self.w(u'</table>')
 
     def entity_types_table(self, eschemas):