From 4386fdd114a3aff00a71adac858882d7cf8e3c28 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Wed, 9 Nov 2011 09:02:03 +0100 Subject: local skin for oauth --- templates/django_oauth2_lite/base.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 templates/django_oauth2_lite/base.html (limited to 'templates/django_oauth2_lite/base.html') diff --git a/templates/django_oauth2_lite/base.html b/templates/django_oauth2_lite/base.html new file mode 100644 index 0000000..a224929 --- /dev/null +++ b/templates/django_oauth2_lite/base.html @@ -0,0 +1,25 @@ +{% extends "tree.html" %} +{% block widgets %} +$(".oauth2-clients").accordion({ + header: 'h3', + collapsible: true, + active: false, + autoHeight: false + }); +$(".oauth2-scopes").accordion({ + header: 'h3', + collapsible: true, + active: false, + autoHeight: false + }); +$(".oauth2-tokens").accordion({ + header: 'h3', + collapsible: true, + active: false, + autoHeight: false + }); +{% endblock %} +{% block headline %}{%endblock%} +{% block content %} +{% block body %}{% endblock %} +{% endblock %} \ No newline at end of file -- cgit v1.1