From 0e1c036c7ae388b10940606dca28f1c638035a45 Mon Sep 17 00:00:00 2001 From: Caleb Forbes Davis V Date: Thu, 7 Jul 2011 11:11:03 -0500 Subject: [PATCH] Bug #437 - adds required validator to slug field for media edit' otherwise we get a 404 because we navigate to blank slug --- mediagoblin/edit/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mediagoblin/edit/forms.py b/mediagoblin/edit/forms.py index d5e7f0a9..0ed52af1 100644 --- a/mediagoblin/edit/forms.py +++ b/mediagoblin/edit/forms.py @@ -23,7 +23,8 @@ class EditForm(wtforms.Form): 'Title', [wtforms.validators.Length(min=0, max=500)]) slug = wtforms.TextField( - 'Slug') + 'Slug', + [wtforms.validators.Required(message="The slug can't be empty")]) description = wtforms.TextAreaField('Description of this work') class EditProfileForm(wtforms.Form): -- 2.25.1