summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-11 14:54:27 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-11 14:54:27 +0000
commitc62b427b122030cb18df96b1f1017b7aa4b97641 (patch)
tree287202d75331e4530f35ec0157ad70034598b7ce /docs
parent16a3822460455a87a539423b16a6e3990404fd6d (diff)
Added a link to docs/outputting_csv.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1172 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/outputting_csv.txt3
1 files changed, 2 insertions, 1 deletions
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