Exemplo n.º 1
0
 def _process(self):
     return WPEditing.render_template(
         'editing.html',
         self.event,
         editable=self.editable,
         contribution=self.contrib
     )
Exemplo n.º 2
0
 def _process(self):
     return WPEditing.render_template('editing.html', self.event)
Exemplo n.º 3
0
 def _process(self):
     return WPEditing.render_template('management/review_conditions.html',
                                      self.event)
Exemplo n.º 4
0
 def _process(self):
     return WPEditing.render_template('management/filetypes.html',
                                      self.event)
Exemplo n.º 5
0
 def _process(self):
     template = 'editing.html' if self.event.has_feature(
         'editing') else 'disabled.html'
     return WPEditing.render_template('management/{}'.format(template),
                                      self.event)
Exemplo n.º 6
0
 def _process(self):
     return WPEditing.render_template('management/editable_type.html', self.event, type=self.editable_type)