app to embed shibboleth embedded discovery service (eds) into a django project.
-
Install the app (i.e. by using pip)
-
add it to
INSTALLED_APPS
:INSTALLED_APPS += ( 'shibboleth_eds', )
-
Add it to
urls.py
:urlpatterns += [ url(r'^ds/', include('shibboleth_eds.urls', namespace='shibboleth_eds')), ]
-
Run
manage.py collectstatic
.
Adjust the template discovery.html
to fit into your project. Modify the settings found in views.py
according to your needs.