Im using django admindocs for documentation and the basic functionality works nicely (I can access the doc pages, models are listed an documented, help_text is included, etc.).
Unfortunately, reStructuredText markup in docstrings is completely ignored, e.g.
- Hyperlinks are not converted to hyperlinks
- Bullet Lists are no bullet lists
- Django markups such as :model:
appname.ModelName
are not resolved
I'm using the Development Trunk Version of Django (1.7)
Here is an example of a docstring I'm using:
class Adresse(models.Model):
u"""Postanschrift
Wird für
- Organisationen
- Personen
genutzt.
Siehe auch https://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#generic-relations
"""
object_id = models.PositiveIntegerField()
content_type = models.ForeignKey(ContentType)
of = generic.GenericForeignKey('content_type', 'object_id' )
...
When I paste the above docstring content into a rest editor (I used http://rst.ninjs.org/), everything works as expected.
The conversion works for docstrings documenting methods, e.g.
def my_method(self):
"""Docstring Heading
1. Listitem 1
2. Listitem 2
refers to :model:`personen.Person`
"""
pass
ist correctly converted.
I'm sure, I missed something very obvious, didn't I?
Then the admindocs module's behavior is the same as in Django 1.4.
To do that copy the sphinx docs to a template folder and add a custom
urls(..)
andview
that provides access to the files with restrictions set to staff only (for instance via the canonical decoratorslogin_required
anduser_pases_test
.Other solutions:
Unfortunately the documentation regarding the rst-usage is somewhat lacking, such as the
settings.py
parameterRESTRUCTUREDTEXT_FILTER_SETTINGS
.Reassure yourself that in order to activate these filters,
django.contrib.markup'
is added to yourINSTALLED_APPS
setting in your settings.py and{% load markup %}
in the template.You should have
docutils
installed. You will not receive errors if it is not installed. When using linux with bash, enter:Directly rendering the reStructuredText:
from django import template
You could do this automated by looping through all [relevant] models and their
__docs__
attribute to subsequently render the string as reStructuredText as follows: