コード例 #1
0
ファイル: event.py プロジェクト: wangrandk/zookeepr
    def __before__(self, **kwargs):
        c.proposals = Proposal.find_all_accepted_without_event()
        c.event_types = EventType.find_all()

        c.can_edit = True
コード例 #2
0
ファイル: event_type.py プロジェクト: flosokaks/zookeepr
 def index(self):
     c.can_edit = True
     c.event_type_collection = EventType.find_all()
     return render('/event_type/list.mako')
コード例 #3
0
ファイル: event.py プロジェクト: SharifulAlamSourav/zookeepr
    def __before__(self, **kwargs):
        c.proposals = Proposal.find_all_accepted_without_event()
        c.event_types = EventType.find_all()

        c.can_edit = True
コード例 #4
0
 def index(self):
     c.can_edit = True
     c.event_type_collection = EventType.find_all()
     return render('/event_type/list.mako')