From 8e53c5bc5db462f6e39404c73ac96ec0cbb6a6c7 Mon Sep 17 00:00:00 2001 From: Simon Law Date: Tue, 24 Jul 2012 14:57:06 -0400 Subject: PDFTemplateResponse and PDFTemplateView now match Django's implementations PDFTemplateResponse is like TemplateResponse in that it does dynamic rendering of a template on the fly. PDFTemplateView has a much smaller implementation, relying on PDFTemplateResponse to do the rendering for it. It also knows about the standard TemplateResponse when it needs to render the HTML version. --- testproject/templates/footer.html | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 testproject/templates/footer.html (limited to 'testproject/templates') diff --git a/testproject/templates/footer.html b/testproject/templates/footer.html new file mode 100644 index 0000000..3ae09cb --- /dev/null +++ b/testproject/templates/footer.html @@ -0,0 +1,2 @@ +MEDIA_URL = {{ MEDIA_URL }} +STATIC_URL = {{ STATIC_URL }} -- cgit v1.2.3