django-shibboleth-eds

Django app to embed Shibboleth Embedded Discovery Service into your Django project.


License
Apache-2.0
Install
pip install django-shibboleth-eds==0.7

Documentation

django-shibboleth-eds

app to embed shibboleth embedded discovery service (eds) into a django project.

install

  1. Install the app (i.e. by using pip)

  2. add it to INSTALLED_APPS:

    INSTALLED_APPS += (
        'shibboleth_eds',
    )
  3. Add it to urls.py:

    urlpatterns += [
       url(r'^ds/', include('shibboleth_eds.urls', namespace='shibboleth_eds')),
    ]
  4. Run manage.py collectstatic.

configure

Adjust the template discovery.html to fit into your project. Modify the settings found in views.py according to your needs.