If you did tried to use reverse
function to set success_url
in class based generic views and you have got an exception, this helper function may help.
Put this snipped in some file, for example utils.py and import this function.
1 2 3 4 5 6 | from django.utils.functional import lazy
from django.core.urlresolvers import reverse
# Workaround for using reverse with success_url in class based generic views
# because direct usage of it throws an exception.
reverse_lazy = lambda name=None, *args : lazy(reverse, str)(name, args=args)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Until Django 1.4 is released and reverse_lazy is included in Django, this snippet does the trick.
#
Please login first before commenting.