X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/80a2c67a898b06c9c28bda89d7aa012676c2a23a..7f81e731d07fa4bdd37887b77c0438395155ec91:/apps/api/forms.py diff --git a/apps/api/forms.py b/apps/api/forms.py index 3c393a87..af1b6b5a 100644 --- a/apps/api/forms.py +++ b/apps/api/forms.py @@ -10,7 +10,7 @@ from django import forms class MergeRequestForm(forms.Form): # should the target document revision be updated or shared - type = forms.ChoiceField(choices=('update', 'share')) + type = forms.ChoiceField(choices=(('update', 'Update'), ('share', 'Share')) ) # which revision to update/share target_revision = forms.RegexField('[0-9a-f]{40}')