Remove references to master2 templates

This commit is contained in:
Lance Edgar 2017-07-14 21:38:46 -05:00
parent a18f55854d
commit 55ca7d5117
2 changed files with 0 additions and 11 deletions

View file

@ -60,7 +60,6 @@ class BatchMasterView2(MasterView2, BatchMasterView):
] ]
return [ return [
'/newbatch/{}.mako'.format(template), '/newbatch/{}.mako'.format(template),
'/master2/{}.mako'.format(template),
'/master/{}.mako'.format(template), '/master/{}.mako'.format(template),
] ]

View file

@ -40,16 +40,6 @@ class MasterView2(MasterView):
rows_pageable = True rows_pageable = True
mobile_pageable = True mobile_pageable = True
def get_fallback_templates(self, template, mobile=False):
if mobile:
return [
'/mobile/master/{}.mako'.format(template),
]
return [
'/master2/{}.mako'.format(template),
'/master/{}.mako'.format(template),
]
@classmethod @classmethod
def get_grid_factory(cls): def get_grid_factory(cls):
""" """