~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to docs/howto/outputting-csv.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.2.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20101012113435-9lnsrh0i3mxozbt0
Tags: upstream-1.2.3
ImportĀ upstreamĀ versionĀ 1.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _howto-outputting-csv:
2
 
 
3
1
==========================
4
2
Outputting CSV with Django
5
3
==========================
61
59
Using the template system
62
60
=========================
63
61
 
64
 
Alternatively, you can use the :ref:`Django template system <topics-templates>`
 
62
Alternatively, you can use the :doc:`Django template system </topics/templates>`
65
63
to generate CSV. This is lower-level than using the convenient CSV, but the
66
64
solution is presented here for completeness.
67
65
 
113
111
Notice that there isn't very much specific to CSV here -- just the specific
114
112
output format. You can use either of these techniques to output any text-based
115
113
format you can dream of. You can also use a similar technique to generate
116
 
arbitrary binary data; see :ref:`howto-outputting-pdf` for an example.
 
114
arbitrary binary data; see :doc:`/howto/outputting-pdf` for an example.