diff --git a/pagure/forms.py b/pagure/forms.py index fab1c1f..6bef2c8 100644 --- a/pagure/forms.py +++ b/pagure/forms.py @@ -32,6 +32,10 @@ class ProjectFormSimplified(wtf.Form): 'Avatar email', [wtforms.validators.optional()] ) + tags = wtforms.TextField( + 'Project tags', + [wtforms.validators.optional()] + ) class ProjectForm(ProjectFormSimplified):