Heyy there,
i have an application, and in my urls.py i have something like that:
urlpatterns = patterns('',
url(r'^profile_view/(?P<id>\d+)/$',
profile_view,
name='profile_view'),)
meaning that the profile_view function has id as a parameter. Now, i want to call that function from another template than the one associated with the def-view that has this url.
How should i do that? i have to put two render_to_response to one same function, in order to render the objects from both models?
thank you!