blob: 235a6574018c8bec0b4e1bf13d62db17a7dc0af5 [file] [log] [blame]
Sapan Bhatiaf7662b02017-04-27 01:03:04 +02001# The hardcoded entries cannot be inferred from the models. To get rid of in the long run
2#
3
Sapan Bhatia4e80a262017-05-19 23:10:51 +02004from .xosbase import XOSBase,XOSBaseManager,XOSBaseDeletionManager,PlModelMixIn,ModelLink
Sapan Bhatia504cc972017-04-27 01:56:28 +02005from .contenttype import ContentType
Sapan Bhatiaf7662b02017-04-27 01:03:04 +02006from .site import Site
7from .dashboardview import DashboardView
8from .user import User
9from .user import UserDashboardView
Sapan Bhatiaf7662b02017-04-27 01:03:04 +020010
11{% for m in proto.messages -%}
Sapan Bhatiad022aeb2017-06-07 15:49:55 +020012{% if not m.options.skip_init -%}
Sapan Bhatiaf7662b02017-04-27 01:03:04 +020013from .{{ m.name | lower }} import {{ m.name }}
Sapan Bhatia170ae272017-05-30 19:01:09 +020014{% endif -%}
Sapan Bhatiaf7662b02017-04-27 01:03:04 +020015{% endfor -%}