From 497123d37fc4fcb3d3324f1e8c80553c9e1879f3 Mon Sep 17 00:00:00 2001 From: Juan Ignacio Fiorentino Date: Mon, 11 Jan 2016 18:22:47 -0300 Subject: [PATCH] Update DOC.md --- DOC.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DOC.md b/DOC.md index c3d6e8e..9788ec4 100644 --- a/DOC.md +++ b/DOC.md @@ -227,6 +227,8 @@ Create a user with: ``python manage.py createsuperuser``. And then create a Client with django shell: ``python manage.py shell``. Or use Django admin if you have it enabled. +![Client Creation](http://i64.tinypic.com/2dsfgoy.png) + ```python >>> from oidc_provider.models import Client >>> c = Client(name='Some Client', client_id='123', client_secret='456', response_type='code', redirect_uris=['http://example.com/'])