
    @View(templateName='{{m.Name}}_index.html')
    def index(self, *args):
        results =None
        index = 0; count=20
        try:
            index = int(self.params.index)
            count = int(self.params.count)
        except:
            pass
        nextIndex = index+count;
        previousIndex = index<=0 and -1 or (index-count>0 and 0 or index-count) 
        result = {'{{m.Name}}List': {{m.Name}}.all().fetch(limit=count, offset=index)}
        result.update(locals())
        return result