Skip to content

hu-berlin-cms/django-shibboleth-eds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.