Esempio n. 1
0
 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 = {'SprintList': Sprint.all().fetch(limit=count, offset=index)}
     result.update(locals())
     return result