コード例 #1
0
 def _process_args(self):
     RHManagePapersBase._process_args(self)
     self.template = PaperTemplate.get_one(request.view_args['template_id'])
コード例 #2
0
ファイル: management.py プロジェクト: bkolobara/indico
 def _process_args(self):
     RHManagePapersBase._process_args(self)
     try:
         self.review_type = request.view_args['review_type']
     except KeyError:
         raise NotFound
コード例 #3
0
 def _process_args(self):
     RHManagePapersBase._process_args(self)
     try:
         self.review_type = request.view_args['review_type']
     except KeyError:
         raise NotFound
コード例 #4
0
ファイル: templates.py プロジェクト: indico/indico
 def _process_args(self):
     RHManagePapersBase._process_args(self)
     self.template = PaperTemplate.get_one(request.view_args['template_id'])