Serve External Template In Django
I want to do something like return render_to_response('http://docs.google.com/View?id=bla', args) and serve an external page with django arguments. Django doesn't like this (it
Solution 1:
Read the template in as a string and render it yourself.
Post a Comment for "Serve External Template In Django"