1
0
mirror of https://github.com/django/django.git synced 2025-10-30 00:56:09 +00:00

Fixed #19378 -- Ensured get_success_url returns a non-lazy URL

This commit is contained in:
Claude Paroz
2012-12-04 13:18:57 +01:00
parent 501c7a221c
commit 795ac7deda
6 changed files with 32 additions and 5 deletions

View File

@@ -11,3 +11,8 @@ class AuthorForm(forms.ModelForm):
class Meta:
model = Author
class ContactForm(forms.Form):
name = forms.CharField()
message = forms.CharField(widget=forms.Textarea)