index.txt 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .. _index:
  2. ====================
  3. Django documentation
  4. ====================
  5. .. rubric:: Everything you need to know about Django (and then some).
  6. Getting help
  7. ============
  8. Having trouble? We'd like to help!
  9. * Try the :ref:`FAQ <faq-index>` -- it's got answers to many common questions.
  10. * Looking for specific information? Try the :ref:`genindex`, :ref:`modindex` or
  11. the :ref:`detailed table of contents <contents>`.
  12. * Search for information in the `archives of the django-users mailing list`_, or
  13. `post a question`_
  14. * Ask a question in the `#django IRC channel`_, or search the `IRC logs`_ to see
  15. if its been asked before
  16. * Report bugs with Django in our `ticket tracker`_.
  17. .. _archives of the django-users mailing list: http://groups.google.com/group/django-users/
  18. .. _post a question: http://groups.google.com/group/django-users/
  19. .. _#django IRC channel: irc://irc.freenode.net/django
  20. .. _IRC logs: http://oebfare.com/logger/django/
  21. .. _ticket tracker: http://code.djangoproject.com/
  22. First steps
  23. ===========
  24. :ref:`Overview <intro-overview>`
  25. See what writing a database-driven application with Django looks like.
  26. :ref:`Installation <intro-install>`
  27. Get Django installed on your computer.
  28. Tutorial: Writing your first Django application
  29. ===============================================
  30. :ref:`Part 1 <intro-tutorial01>`
  31. Get set up, create models, and play with the database API.
  32. :ref:`Part 2 <intro-tutorial02>`
  33. Explore the automatically-generated admin site.
  34. :ref:`Part 3 <intro-tutorial03>`
  35. Write the public interface views.
  36. :ref:`Part 4 <intro-tutorial04>`
  37. Learn how to process forms.
  38. Using Django
  39. ============
  40. :ref:`Models <topics-db-index>`
  41. Design a single, definitive source of data about your data.
  42. :ref:`Handling web requests <topics-http-index>`
  43. Handle web requests, map them to views, and return pages.
  44. :ref:`Forms <topics-forms-index>`
  45. Build and handle HTML forms.
  46. :ref:`Templates <topics-templates>`
  47. Develop the visual design of your site.
  48. And more:
  49. ---------
  50. :ref:`topics-auth` ... :ref:`topics-cache` ... :ref:`topics-email` ...
  51. :ref:`topics-files` ... :ref:`topics-i18n` ... :ref:`topics-install` ...
  52. :ref:`topics-pagination` ... :ref:`topics-serialization` ...
  53. :ref:`topics-settings` ... :ref:`topics-testing`
  54. Add-on ("contrib") applications
  55. ===============================
  56. :ref:`Django's automatic admin site <ref-contrib-admin>`
  57. Get a clean interface to your data with no effort at all.
  58. :ref:`Form tools <ref-contrib-formtools-index>`
  59. Easily handle complex form workflows.
  60. :ref:`Syndication feeds <ref-contrib-syndication>`
  61. Generate RSS and Atom feeds of your data.
  62. :ref:`"Local flavor" <ref-contrib-localflavor>`
  63. Give your site that special local touch.
  64. And more:
  65. ---------
  66. :ref:`ref-contrib-contenttypes` ... :ref:`ref-contrib-csrf` ...
  67. :ref:`ref-contrib-databrowse` ... :ref:`ref-contrib-flatpages` ...
  68. :ref:`ref-contrib-humanize` ... :ref:`ref-contrib-redirects` ...
  69. :ref:`ref-contrib-sitemaps` ... :ref:`ref-contrib-sites` ...
  70. :ref:`ref-contrib-webdesign`
  71. Solving specific problems
  72. =========================
  73. :ref:`Deployment <howto-deployment-index>`
  74. Release your project to the world.
  75. :ref:`Importing data from legacy databases <howto-legacy-databases>`
  76. Use Django with an existing database or alongside other web development
  77. toolkits.
  78. :ref:`Custom template tags <howto-custom-template-tags>`
  79. Add your own extensions to Django's template language.
  80. :ref:`Generating CSV <howto-outputting-csv>` & :ref:`PDF <howto-outputting-PDF>`
  81. Produce non-HTML content with Django.
  82. And more:
  83. ---------
  84. :ref:`Authenticating in Apache <howto-apache-auth>` ...
  85. :ref:`howto-custom-file-storage` ... :ref:`howto-custom-management-commands` ...
  86. :ref:`howto-custom-model-fields` ... :ref:`howto-error-reporting` ...
  87. :ref:`howto-initial-data` ... :ref:`howto-static-files`
  88. Reference
  89. =========
  90. :ref:`Settings <ref-settings>`
  91. See all of Django's settings and what they do.
  92. :ref:`Request & response objects <ref-request-response>`
  93. Understand the classes Django uses to represent HTTP requests and responses.
  94. :ref:`Model API reference <ref-models-index>`
  95. Revel in the gory details of Django's model system.
  96. :ref:`Form API reference <ref-forms-index>`
  97. Learn the details of forms, fields, and widgets.
  98. And more:
  99. ---------
  100. :ref:`ref-databases` ... :ref:`ref-django-admin` ... :ref:`ref-files-index` ...
  101. :ref:`ref-generic-views` ... :ref:`ref-middleware` ...
  102. :ref:`ref-templates-index` ... :ref:`ref-unicode`
  103. And all the rest
  104. ================
  105. :ref:`Internals <internals-index>`
  106. Learn how Django works under the hood, and how you can contribute to the
  107. project.
  108. :ref:`Release notes <releases-index>`
  109. See what is and was new in each release of Django.
  110. :ref:`Miscellany <misc-index>`
  111. Stuff we can't find a more organized place for. Like that drawer in your
  112. kitchen with the scissors, batteries, and duct tape.