From dbbf7b447e0af9d1ebeba244ba75f50d424ae76a Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 17 2015 16:09:03 +0000 Subject: Add the blocks to the form to update a ticket --- diff --git a/progit/forms.py b/progit/forms.py index 0fbea71..e7eef1f 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -79,6 +79,9 @@ class UpdateIssueForm(wtf.Form): depends = wtforms.TextField( 'dependency issue', [wtforms.validators.Optional()] ) + blocks = wtforms.TextField( + 'blocked issue', [wtforms.validators.Optional()] + ) comment = wtforms.TextAreaField( 'Comment', [wtforms.validators.Optional()] )