コード例 #1
0
ファイル: ceiling.py プロジェクト: duncan-zookeepr/zookeepr
 def index(self):
     c.can_edit = True
     c.ceiling_collection = Ceiling.find_all()
     return render('/ceiling/list.mako')
コード例 #2
0
ファイル: product.py プロジェクト: mikalstill/zookeepr
 def __before__(self, **kwargs):
     c.product_categories = ProductCategory.find_all()
     c.ceilings = Ceiling.find_all()
コード例 #3
0
ファイル: product.py プロジェクト: duncan-zookeepr/zookeepr
 def __before__(self, **kwargs):
     c.product_categories = ProductCategory.find_all()
     c.ceilings = Ceiling.find_all()
コード例 #4
0
ファイル: ceiling.py プロジェクト: CarlFK/zookeepr
 def index(self):
     c.can_edit = True
     c.ceiling_collection = Ceiling.find_all()
     return render('/ceiling/list.mako')