diff options
author | luxagraf <sng@luxagraf.net> | 2012-09-22 22:37:52 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2012-09-22 22:37:52 -0400 |
commit | 52d5613672758ac6c8ebffc7f33d94d47bde6180 (patch) | |
tree | 0b6e1fbc4ed013b2ba701dedeb39be9781ff8204 /app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html | |
parent | efb623af0bcb47d510501c282e1326b11343a29c (diff) |
moved outside dependencies to virtualenv and dumped some unused apps out of lib
Diffstat (limited to 'app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html')
-rw-r--r-- | app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html b/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html deleted file mode 100644 index 76aaa1e..0000000 --- a/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html +++ /dev/null @@ -1,79 +0,0 @@ -{% load i18n admin_tools_dashboard_tags %} - -<script type="text/javascript" src="{{ media_url }}/admin_tools/js/utils.js"></script> - -<script type="text/javascript" charset="utf-8"> - // Load js files syncronously and conditionally - - var js_files = [ - { - src : '{{ media_url }}/admin_tools/js/jquery/jquery.min.js', - test: function() { return typeof(jQuery) == 'undefined'; } - }, - { - src : '{{ media_url }}/admin_tools/js/jquery/jquery-ui.min.js', - test: function() { return typeof(jQuery.ui) == 'undefined'; } - }, - { - src : '{{ media_url }}/admin_tools/js/json.min.js', - test: function() { return typeof(JSON.stringify) == 'undefined'; } - }, - { - src : '{{ media_url }}/admin_tools/js/jquery/jquery.cookie.min.js', - test: function() { return typeof(jQuery.cookie) == 'undefined'; } - }, - { - src : '{{ media_url }}/admin_tools/js/jquery/jquery.dashboard.js', - test: function() { return true; } - }, - { - src : '{{ media_url }}/admin_tools/js/dashboard.js', - test: function() { return true; } - }{% for js in dashboard.Media.js %}, - { - src : '{{ media_url }}/{{ js }}', - test: function() { return true; } - }{% endfor %} - ]; - - loadScripts(js_files, function(){ - jQuery(function($) { - init_dashboard( - '{{ dashboard.get_id }}', - {{ dashboard.columns }}, - {% autoescape off %}{{ dashboard_preferences }}{% endautoescape %}, - '{% url admin-tools-dashboard-set-preferences %}' - ); - }); - }); -</script> - -{% if dashboard.Media.js %} - {% for js in dashboard.Media.js %} - <script type="text/javascript" src="{{ media_url }}/{{ js }}"></script> - {% endfor %} -{% endif %} - -<div class="container-grid"> - <div class="column span-12"> - {% for module in dashboard.children %} - {% if "column_1" in module.css_classes %} - {% admin_tools_render_dashboard_module module forloop.counter %} - {% endif %} - {% endfor %} - </div> - <div class="column span-6"> - {% for module in dashboard.children %} - {% if "column_2" in module.css_classes %} - {% admin_tools_render_dashboard_module module forloop.counter %} - {% endif %} - {% endfor %} - </div> - <div class="column span-6 last"> - {% for module in dashboard.children %} - {% if "column_3" in module.css_classes %} - {% admin_tools_render_dashboard_module module forloop.counter %} - {% endif %} - {% endfor %} - </div> -</div> |