admindocs.txt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. ========================================
  2. The Django admin documentation generator
  3. ========================================
  4. .. module:: django.contrib.admindocs
  5. :synopsis: Django's admin documentation generator.
  6. .. currentmodule:: django.contrib.admindocs
  7. Django's :mod:`~django.contrib.admindocs` app pulls documentation from the
  8. docstrings of models, views, template tags, and template filters for any app in
  9. :setting:`INSTALLED_APPS` and makes that documentation available from the
  10. :mod:`Django admin <django.contrib.admin>`.
  11. Overview
  12. ========
  13. To activate the :mod:`~django.contrib.admindocs`, you will need to do
  14. the following:
  15. * Add :mod:`django.contrib.admindocs` to your :setting:`INSTALLED_APPS`.
  16. * Add ``path('admin/doc/', include('django.contrib.admindocs.urls'))`` to
  17. your ``urlpatterns``. Make sure it's included *before* the
  18. ``'admin/'`` entry, so that requests to ``/admin/doc/`` don't get
  19. handled by the latter entry.
  20. * Install the :pypi:`docutils` 0.19+ package.
  21. * **Optional:** Using the admindocs bookmarklets requires
  22. ``django.contrib.admindocs.middleware.XViewMiddleware`` to be installed.
  23. Once those steps are complete, you can start browsing the documentation by
  24. going to your admin interface and clicking the "Documentation" link in the
  25. upper right of the page.
  26. Documentation helpers
  27. =====================
  28. The following special markup can be used in your docstrings to easily create
  29. hyperlinks to other components:
  30. ================= =======================
  31. Django Component reStructuredText roles
  32. ================= =======================
  33. Models ``:model:`app_label.ModelName```
  34. Views ``:view:`app_label.view_name```
  35. Template tags ``:tag:`tagname```
  36. Template filters ``:filter:`filtername```
  37. Templates ``:template:`path/to/template.html```
  38. ================= =======================
  39. Model reference
  40. ===============
  41. The **models** section of the ``admindocs`` page describes each model in the
  42. system along with all the fields, properties, and methods available on it.
  43. Relationships to other models appear as hyperlinks. Descriptions are pulled
  44. from ``help_text`` attributes on fields or from docstrings on model methods.
  45. A model with useful documentation might look like this::
  46. class BlogEntry(models.Model):
  47. """
  48. Stores a single blog entry, related to :model:`blog.Blog` and
  49. :model:`auth.User`.
  50. """
  51. slug = models.SlugField(help_text="A short label, generally used in URLs.")
  52. author = models.ForeignKey(
  53. User,
  54. models.SET_NULL,
  55. blank=True,
  56. null=True,
  57. )
  58. blog = models.ForeignKey(Blog, models.CASCADE)
  59. ...
  60. def publish(self):
  61. """Makes the blog entry live on the site."""
  62. ...
  63. View reference
  64. ==============
  65. Each URL in your site has a separate entry in the ``admindocs`` page, and
  66. clicking on a given URL will show you the corresponding view. Helpful things
  67. you can document in your view function docstrings include:
  68. * A short description of what the view does.
  69. * The **context**, or a list of variables available in the view's template.
  70. * The name of the template or templates that are used for that view.
  71. For example::
  72. from django.shortcuts import render
  73. from myapp.models import MyModel
  74. def my_view(request, slug):
  75. """
  76. Display an individual :model:`myapp.MyModel`.
  77. **Context**
  78. ``mymodel``
  79. An instance of :model:`myapp.MyModel`.
  80. **Template:**
  81. :template:`myapp/my_template.html`
  82. """
  83. context = {"mymodel": MyModel.objects.get(slug=slug)}
  84. return render(request, "myapp/my_template.html", context)
  85. Template tags and filters reference
  86. ===================================
  87. The **tags** and **filters** ``admindocs`` sections describe all the tags and
  88. filters that come with Django (in fact, the :ref:`built-in tag reference
  89. <ref-templates-builtins-tags>` and :ref:`built-in filter reference
  90. <ref-templates-builtins-filters>` documentation come directly from those
  91. pages). Any tags or filters that you create or are added by a third-party app
  92. will show up in these sections as well.
  93. Template reference
  94. ==================
  95. While ``admindocs`` does not include a place to document templates by
  96. themselves, if you use the ``:template:`path/to/template.html``` syntax in a
  97. docstring the resulting page will verify the path of that template with
  98. Django's :ref:`template loaders <template-loaders>`. This can be a handy way to
  99. check if the specified template exists and to show where on the filesystem that
  100. template is stored.
  101. .. _admindocs-bookmarklets:
  102. Included Bookmarklets
  103. =====================
  104. One bookmarklet is available from the ``admindocs`` page:
  105. Documentation for this page
  106. Jumps you from any page to the documentation for the view that generates
  107. that page.
  108. Using this bookmarklet requires that ``XViewMiddleware`` is installed and that
  109. you are logged into the :mod:`Django admin <django.contrib.admin>` as a
  110. :class:`~django.contrib.auth.models.User` with
  111. :attr:`~django.contrib.auth.models.User.is_staff` set to ``True``.