Django Oauth Toolkit Templates#
This Django app exists solely to provide a home for the authorize.html template. This overrides the default version of the template defined in the django-oauth-toolkit library.
In an ideal world, this template would live in the oauth_dispatch djangoapp along with our other oauth2 code. Unfortunately, due to the way that Django’s app_directories loader works, we cannot put this template
in oauth_dispatch, because the `template defined in django-oauth-toolkit`_ will take precedence over the one in oauth_dispatch. The library must be defined first in INSTALLED_APPS.
So until we find another solution, this template will continue to live here.