From c62b427b122030cb18df96b1f1017b7aa4b97641 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 11 Nov 2005 14:54:27 +0000 Subject: [PATCH] Added a link to docs/outputting_csv.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1172 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/outputting_csv.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/outputting_csv.txt b/docs/outputting_csv.txt index 4a9459bbd9..3f95b3600d 100644 --- a/docs/outputting_csv.txt +++ b/docs/outputting_csv.txt @@ -70,7 +70,7 @@ mention: Using the template system ========================= -Alternatively, you can use the Django template system to generate CSV. This +Alternatively, you can use the `Django template system`_ to generate CSV. This is lower-level than using the convenient CSV, but the solution is presented here for completeness. @@ -115,4 +115,5 @@ a line of CSV for each row. It uses the `addslashes template filter`_ to ensure there aren't any problems with quotes. If you can be certain your data doesn't have single or double quotes in it, you can remove the ``addslashes`` filters. +.. _Django template system: http://www.djangoproject.com/documentation/templates/ .. _addslashes template filter: http://www.djangoproject.com/documentation/templates/#addslashes