diff --git a/docs/sections/changelog.rst b/docs/sections/changelog.rst index 0dceca8d..1f9ec227 100644 --- a/docs/sections/changelog.rst +++ b/docs/sections/changelog.rst @@ -8,7 +8,8 @@ All notable changes to this project will be documented in this file. Unreleased ========== -None +* Changed: Django 5 added to test matrix. +* Changed: ID Token JSON encoder improved using DjangoJSONEncoder. 0.8.3 ===== diff --git a/docs/sections/contribute.rst b/docs/sections/contribute.rst index 121cc883..d08cd033 100644 --- a/docs/sections/contribute.rst +++ b/docs/sections/contribute.rst @@ -34,7 +34,7 @@ Improve Documentation We use `Sphinx `_ to generate this documentation. If you want to add or modify something just: -* Install Sphinx (``pip install sphinx sphinx_rtd_theme``) and the auto-build tool (``pip install sphinx-autobuild``). +* Install Sphinx and the auto-build tool (``pip install sphinx sphinx_rtd_theme sphinx-autobuild``). * Move inside the docs folder. ``cd docs/`` * Generate and watch docs by running ``sphinx-autobuild . _build/``. * Open ``http://127.0.0.1:8000`` in a browser. diff --git a/docs/sections/templates.rst b/docs/sections/templates.rst index bb1f5fa7..aff66ac0 100644 --- a/docs/sections/templates.rst +++ b/docs/sections/templates.rst @@ -6,7 +6,9 @@ Templates Add your own templates files inside a folder named ``templates/oidc_provider/``. You can copy the sample html files here and customize them with your own style. -**authorize.html**:: +authorize.html +============== +::

Request for Permission

@@ -29,7 +31,9 @@ You can copy the sample html files here and customize them with your own style. -**error.html**:: +error.html +========== +::

{{ error }}

{{ description }}

@@ -51,3 +55,18 @@ The following contexts will be passed to the ``authorize`` and ``error`` templat 'error': 'string stating the error', 'description': 'string stating description of the error' } + +end_session_prompt.html +======================= + +Read more at :doc:`Session Management > Logout consent prompt ` section. + +end_session_completed.html +========================== + +Read more at :doc:`Session Management > Other scenarios <../sections/sessionmanagement>` section. + +end_session_failed.html +======================= + +Read more at :doc:`Session Management > Other scenarios <../sections/sessionmanagement>` section.