From b01b4321755bd5a4c74b25e251a0f3ad14ba9fdd Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 05 2015 09:22:33 +0000 Subject: Bring back the AddIssueTagForm it's used when editing a tag --- diff --git a/progit/forms.py b/progit/forms.py index 0b47962..6aef85a 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -60,6 +60,13 @@ class RequestPullForm(wtf.Form): ) +class AddIssueTagForm(wtf.Form): + ''' Form to add a comment to an issue. ''' + tag = wtforms.TextField( + 'tag', [wtforms.validators.Optional()] + ) + + class UpdateIssueForm(wtf.Form): ''' Form to add a comment to an issue. ''' tag = wtforms.TextField(