Example #1
0
 def __before__(self, **kwargs):
     c.can_edit = True
     c.fulfilment_types = FulfilmentType.find_all()
Example #2
0
    def __before__(self, **kwargs):
        c.can_edit = True

        c.fulfilment_type = FulfilmentType.find_all()
        c.fulfilment_status = FulfilmentStatus.find_all()
Example #3
0
 def __before__(self, **kwargs):
     c.product_categories = ProductCategory.find_all()
     c.fulfilment_types = FulfilmentType.find_all()
     c.ceilings = Ceiling.find_all()
Example #4
0
 def index(self):
     c.fulfilment_type_collection = FulfilmentType.find_all()
     return render('/fulfilment_type/list.mako')
Example #5
0
 def __before__(self, **kwargs):
     c.product_categories = ProductCategory.find_all()
     c.fulfilment_types = FulfilmentType.find_all()
     c.ceilings = Ceiling.find_all()
Example #6
0
 def index(self):
     c.fulfilment_type_collection = FulfilmentType.find_all()
     return render("/fulfilment_type/list.mako")