Install

pip install rstview
  1. In your settings file add rstview to your installed apps:

    INSTALLED_APPS = (
        ...
        'rstview',
        ...
    )
    
  2. Import default settings:

    from rstview.settings import *
    
  3. Finally add these lines in your main urls.py:

    from rstview.discover import autodiscover
    autodiscover()
    

    You may also try to do discovering yourself from your code, see Configuration discovering. For details about registry and configuration see Configuration registry.

Now you can use rstview either from Template tags or Views.