apply → accept and remove author from ChangeSetUpdate

This commit is contained in:
Laura Klünder 2017-07-05 21:39:31 +02:00
parent 2724f082a6
commit e1b776a03c
6 changed files with 37 additions and 9 deletions

View file

@ -24,9 +24,9 @@ class ChangeSet(models.Model):
('proposed', _('proposed')),
('review', _('in review')),
('rejected', _('rejected')),
('reproposed', _('reproposed')),
('reproposed', _('proposed again')),
('finallyrejected', _('finally rejected')),
('applied', _('accepted')),
('applied', _('accepted and applied')),
)
created = models.DateTimeField(auto_now_add=True, verbose_name=_('created'))
last_change = models.ForeignKey('editor.ChangeSetUpdate', null=True, related_name='+',