django.shortcuts.redirect - agregar variable
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
def custom_redirect(url_nombre, *args, **kwargs): from django.core.urlresolvers import reverse import urllib url = reverse(url_nombre, args = args) params = urllib.urlencode(kwargs) return HttpResponseRedirect(url + "?%s" % params)
El cual puedes llama en tus vistas de la siguiente forma:
return custom_redirect('url-nombre', x, q = 'valor')