From 9327cd86b2c9f1db0108c97e630c6d5610e65b0d Mon Sep 17 00:00:00 2001 From: Rob Hudson Date: Thu, 11 Feb 2010 14:19:30 -0800 Subject: Added example project directory. Currently this allows for easy manual testing a few other Javascript libraries and whether the debug toolbar javascript conflicts with them. --- example/templates/admin/login.html | 34 ++++++++++++++++++++++++++++++++++ example/templates/index.html | 16 ++++++++++++++++ example/templates/jquery/index.html | 21 +++++++++++++++++++++ example/templates/mootools/index.html | 19 +++++++++++++++++++ example/templates/prototype/index.html | 20 ++++++++++++++++++++ 5 files changed, 110 insertions(+) create mode 100644 example/templates/admin/login.html create mode 100644 example/templates/index.html create mode 100644 example/templates/jquery/index.html create mode 100644 example/templates/mootools/index.html create mode 100644 example/templates/prototype/index.html (limited to 'example/templates') diff --git a/example/templates/admin/login.html b/example/templates/admin/login.html new file mode 100644 index 0000000..b15b767 --- /dev/null +++ b/example/templates/admin/login.html @@ -0,0 +1,34 @@ +{% extends "admin/base_site.html" %} +{% load i18n %} + +{% block extrastyle %}{% load adminmedia %}{{ block.super }}{% endblock %} + +{% block bodyclass %}login{% endblock %} + +{% block content_title %}{% endblock %} + +{% block breadcrumbs %}{% endblock %} + +{% block content %} +{% if error_message %} +
{{ error_message }}
+{% endif %} +If you see this, jQuery is working.
+ + diff --git a/example/templates/mootools/index.html b/example/templates/mootools/index.html new file mode 100644 index 0000000..1dac10c --- /dev/null +++ b/example/templates/mootools/index.html @@ -0,0 +1,19 @@ + + + +If you see this, MooTools is working.
+ + diff --git a/example/templates/prototype/index.html b/example/templates/prototype/index.html new file mode 100644 index 0000000..c8fefc3 --- /dev/null +++ b/example/templates/prototype/index.html @@ -0,0 +1,20 @@ + + + +If you see this, Prototype is working.
+ + + -- cgit v1.2.3