Login

Using reverse with success_url in class based generic views

Author:
cdejan
Posted:
May 21, 2011
Language:
Python
Version:
1.3
Score:
3 (after 3 ratings)

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

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

haplo (on November 13, 2011):

Until Django 1.4 is released and reverse_lazy is included in Django, this snippet does the trick.

#

Please login first before commenting.