web/views/startup.py
branchtls-sprint
changeset 1398 5fe84a5f7035
parent 1132 96752791c2b6
child 1498 2c6eec0b46b9
equal deleted inserted replaced
1397:6cbc7bc8ea6d 1398:5fe84a5f7035
    90                                 if not eschema.meta and not eschema.is_subobject(strict=True))
    90                                 if not eschema.meta and not eschema.is_subobject(strict=True))
    91         if manager: 
    91         if manager: 
    92             self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self.req._('system entities'))
    92             self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self.req._('system entities'))
    93             self.entity_types_table(eschema for eschema in schema.entities()
    93             self.entity_types_table(eschema for eschema in schema.entities()
    94                                     if eschema.meta and not eschema.schema_entity())
    94                                     if eschema.meta and not eschema.schema_entity())
    95             if 'EFRDef' in schema: # check schema support
    95             if 'CWAttribute' in schema: # check schema support
    96                 self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self.req._('schema entities'))
    96                 self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self.req._('schema entities'))
    97                 self.entity_types_table(schema.eschema(etype)
    97                 self.entity_types_table(schema.eschema(etype)
    98                                         for etype in schema.schema_entity_types())
    98                                         for etype in schema.schema_entity_types())
    99         self.w(u'</table>')
    99         self.w(u'</table>')
   100         
   100