I have some data I'd like to pass into an html template using the render_to_response function. So generally I will do something like:
return render_to_response('template.html', {'arg1':arg1,'arg2': arg2}, context_instance=RequestContext(request))
However, I want to create a link that leads to this page instead of just going directly to it. The arguments are lists of data used for generating graphs, not small like years or numbers or single words, so I don't want them to be displayed in the URL in the name pattern like this:
urlpatterns = patterns('',
url(r'^archive/(\d{4})/$', archive
)
Is there a way I can pass in the extra arguments to the views function and generate a url link without displaying the extra arguments in the url?
I already know that you can pass in extra arguments like this
urlpatterns = patterns('blog.views',
(r'^blog/(?P<year>\d{4})/$', 'year_archive', {'foo': 'bar'}),
)
But that is not what I want since I don't want the arguments hardcoded- they do not stay constant and is data generated by other code.
Summary: How can I create a link that does render_to_response but only after you click it?