On Aug 6, 9:33 pm, NealWalters <nealwalt...@nealwalters.com> wrote: > Is there a keyword that will automatically put the URL of the current > page in the Django form? > Or do I have to do that in code and pass it to the form as a normal > user variable? > > Here's what I'm trying to accomplish. I have a feedback form on a base > template. When the user clicks the feedback button, it will post to / > submitFeedback. One of my database fields is the URL, so I know which > screen the users was commenting on. > > Thanks, > Neal Walters
If you use RequestContext with the request context_processor, your template context will always include the request object - from where you can get request.path which is the current URL. See http://docs.djangoproject.com/en/dev/ref/templates/api/#id1 http://docs.djangoproject.com/en/dev/ref/request-response/ -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---