summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/django_oauth2_lite/base.html25
1 files changed, 25 insertions, 0 deletions
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