summaryrefslogtreecommitdiff
path: root/app/lib/grappelli/templates/admin_tools/dashboard
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/grappelli/templates/admin_tools/dashboard')
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/css.html2
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/dashboard.html79
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/dashboard.txt141
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/dashboard_app_index.txt29
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/dummy.html1
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/module.html7
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/app_list.html58
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/column.html9
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/feed.html21
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/group.html33
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/link_list.html21
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/model_list.html26
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/module_group.html10
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/modules/recent_actions.html26
-rw-r--r--app/lib/grappelli/templates/admin_tools/dashboard/preferences_form.html10
15 files changed, 0 insertions, 473 deletions
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/css.html b/app/lib/grappelli/templates/admin_tools/dashboard/css.html
deleted file mode 100644
index 0c69fd1..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/css.html
+++ /dev/null
@@ -1,2 +0,0 @@
-{% for css in css_files %}
-<link rel="stylesheet" href="{{ media_url }}/{{ css }}" type="text/css" media="screen, projection"/>{% endfor %}
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>
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.txt b/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.txt
deleted file mode 100644
index 4417070..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/dashboard.txt
+++ /dev/null
@@ -1,141 +0,0 @@
-from django.utils.translation import ugettext_lazy as _
-from django.core.urlresolvers import reverse
-from admin_tools.dashboard import modules, Dashboard, AppIndexDashboard
-
-# to activate your index dashboard add the following to your settings.py:
-#
-# ADMIN_TOOLS_INDEX_DASHBOARD = '{{ project }}.{{ file }}.CustomIndexDashboard'
-
-class CustomIndexDashboard(Dashboard):
- """
- Custom index dashboard for {{ project }}.
- """
- def __init__(self, **kwargs):
- Dashboard.__init__(self, **kwargs)
-
- # append a link list module for "quick links"
- #self.children.append(modules.LinkList(
- # title=_('Quick links'),
- # layout='inline',
- # draggable=False,
- # deletable=False,
- # collapsible=False,
- # children=[
- # {
- # 'title': _('Return to site'),
- # 'url': '/',
- # },
- # {
- # 'title': _('Change password'),
- # 'url': reverse('admin:password_change'),
- # },
- # {
- # 'title': _('Log out'),
- # 'url': reverse('admin:logout')
- # },
- # ]
- #))
-
- self.children.append(modules.LinkList(
- column=1,
- title=_('Media Management'),
- children=[
- {
- 'title': _('Django FileBrowser'),
- 'url': '/admin/filebrowser/browse/',
- 'external': False,
- },
- ]
- ))
-
- # append an app list module for "Administration"
- self.children.append(modules.AppList(
- title=_('Administration'),
- include_list=('django.contrib',),
- css_classes=['collapse', 'open'],
- ))
-
- # append an app list module for "Applications"
- self.children.append(modules.AppList(
- title=_('Applications'),
- exclude_list=('django.contrib',),
- css_classes=['collapse', 'open'],
- ))
-
- # append a recent actions module
- self.children.append(modules.RecentActions(
- column=2,
- title=_('Recent Actions'),
- limit=5
- ))
-
- # append a feed module
- self.children.append(modules.Feed(
- column=2,
- title=_('Latest Django News'),
- feed_url='http://www.djangoproject.com/rss/weblog/',
- limit=5
- ))
-
- # append another link list module for "support".
- self.children.append(modules.LinkList(
- column=2,
- title=_('Support'),
- children=[
- {
- 'title': _('Django documentation'),
- 'url': 'http://docs.djangoproject.com/',
- 'external': True,
- },
- {
- 'title': _('Django "django-users" mailing list'),
- 'url': 'http://groups.google.com/group/django-users',
- 'external': True,
- },
- {
- 'title': _('Django irc channel'),
- 'url': 'irc://irc.freenode.net/django',
- 'external': True,
- },
- ]
- ))
-
- def init_with_context(self, context):
- """
- Use this method if you need to access the request context.
- """
- pass
-
-
-# to activate your app index dashboard add the following to your settings.py:
-#
-# ADMIN_TOOLS_APP_INDEX_DASHBOARD = '{{ project }}.{{ file }}.CustomAppIndexDashboard'
-
-class CustomAppIndexDashboard(AppIndexDashboard):
- """
- Custom app index dashboard for {{ project }}.
- """
- def __init__(self, *args, **kwargs):
- AppIndexDashboard.__init__(self, *args, **kwargs)
-
- # we disable title because its redundant with the model list module
- self.title = ''
-
- # append a model list module
- self.children.append(modules.ModelList(
- title=_(self.app_title),
- models=self.models,
- ))
-
- # append a recent actions module
- self.children.append(modules.RecentActions(
- column=2,
- title=_('Recent Actions'),
- include_list=self.get_app_content_types(),
- ))
-
- def init_with_context(self, context):
- """
- Use this method if you need to access the request context.
- """
- pass
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/dashboard_app_index.txt b/app/lib/grappelli/templates/admin_tools/dashboard/dashboard_app_index.txt
deleted file mode 100644
index 0574dfc..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/dashboard_app_index.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-from django.utils.translation import ugettext_lazy as _
-from django.core.urlresolvers import reverse
-from admin_tools.dashboard import modules, AppIndexDashboard
-
-# create your custom modules here if you want, for example:
-#
-# class CustomDashboardModule(modules.DashboardModule):
-# pass
-#
-{% if warning %}
-# WARNING: you've changed the default file name 'dashboard.py' to '{{ file }}.py',
-# so, you will need to tell django-admin-tools about this, just add this line
-# to your settings.py file:
-# ADMIN_TOOLS_APP_INDEX_DASHBOARD_MODULE = '{{ file }}'
-{% endif %}
-# Your {{ app }} dashboard class
-class {{ app|capfirst }}Dashboard(AppIndexDashboard):
- """
- Document your custom app index dashboard.
- """
- def __init__(self, app_title, models, *args, **kwargs):
- super(CustomAppIndexDashboard, self).__init__(*args, **kwargs)
-
- # append your modules here, example:
- # self.append(modules.RecentActionsDashboardModule(
- # title=_('Recent Actions'),
- # limit=5,
- # include_list=models,
- # ))
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/dummy.html b/app/lib/grappelli/templates/admin_tools/dashboard/dummy.html
deleted file mode 100644
index f04fcf5..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/dummy.html
+++ /dev/null
@@ -1 +0,0 @@
-{% extends template %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/module.html b/app/lib/grappelli/templates/admin_tools/dashboard/module.html
deleted file mode 100644
index 85f55f8..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/module.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{% if not module.is_empty %}
- {% block module_content %}
- {% for child in module.children %}
- {{ child }}
- {% endfor %}
- {% endblock %}
-{% endif %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/app_list.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/app_list.html
deleted file mode 100644
index 8cbd4a7..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/app_list.html
+++ /dev/null
@@ -1,58 +0,0 @@
-{% extends "admin_tools/dashboard/module.html" %}
-{% load i18n %}
-{% block module_content %}
- <div class="module {% for item in module.css_classes %}{{ item }} {% endfor %}"{% if index %} id="module_{{ index }}{% if subindex %}_{{ subindex }}{% endif %}"{% endif %}>
-
- {% if module.title %}
- {% if subindex %}
- <h3>{{ module.title }}</h3>
- {% else %}
- <h2>{{ module.title }}</h2>
- {% endif %}
- {% endif %}
-
-{% spaceless %}
- {% if module.pre_content %}
- <p>{{ module.pre_content }}</p>
- {% endif %}
- {% for child in module.children %}
-
- <div class="module">
- {% if subindex %}
- <h4><a href="{{ child.url }}">{{ child.title }}</a></h4>
- {% else %}
- <h3><a href="{{ child.url }}">{{ child.title }}</a></h3>
- {% endif %}
-
- {% for model in child.models %}
- <div class="row">
- {% if model.change_url %}
- <a href="{{ model.change_url }}">{{ model.title }}</a>
- {% else %}
- {{ model.title }}
- {% endif %}
- {% if model.add_url or model.change_url %}
- <ul class="actions">
- {% if model.add_url %}
- <li class="add-link">
- <a href="{{ model.add_url }}">{% trans "Add" %}</a>
- </li>
- {% endif %}
- {% if model.change_url %}
- <li class="change-link">
- <a href="{{ model.change_url }}">{% trans "Change" %}</a>
- </li>
- {% endif %}
- </ul>
- {% endif %}
- </div>
- {% endfor %}
-
- </div>
- {% endfor %}
- {% if module.post_content %}
- <p>{{ module.post_content }}</p>
- {% endif %}
-{% endspaceless %}
-</div>
-{% endblock %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/column.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/column.html
deleted file mode 100644
index 8df8268..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/column.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "dashboard/module.html" %}
-{% load i18n admin_tools_dashboard_tags %}
-{% block module_content %}
- <div class="column {{ module.className }}">
- {% for child in module.children %}
- {% admin_tools_render_dashboard_module child forloop.counter %}
- {% endfor %}
- </div>
-{% endblock %} \ No newline at end of file
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/feed.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/feed.html
deleted file mode 100644
index 3deec4e..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/feed.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% extends "admin_tools/dashboard/module.html" %}
-{% block module_content %}
-{% if subindex %}
- <div class="module feed {% for item in module.css_classes %}{{ item }} {% endfor %}">
- <h3>{{ module.title }}</h2>
-{% else %}
- <div class="module feed {% for item in module.css_classes %}{{ item }} {% endfor %}">
- <h2>{{ module.title }}</h2>
-{% endif %}
- <ul>
- {% spaceless %}
- {% for child in module.children %}
- <li>
- {% if child.date %}<span class="date mini quiet">{{ child.date|date }}&nbsp;</span>{% endif %}
- {% if child.warning %}<span class="warning">{{ child.title }}</span>{% else %}<a class="external" href="{{ child.url }}">{{ child.title }}</a>{% endif %}
- </li>
- {% endfor %}
- {% endspaceless %}
- </ul>
-</div>
-{% endblock %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/group.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/group.html
deleted file mode 100644
index 144c82f..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/group.html
+++ /dev/null
@@ -1,33 +0,0 @@
-{% extends "admin_tools/dashboard/module.html" %}
-{% load admin_tools_dashboard_tags %}
-{% block module_content %}
-<div class="group group-{{ module.display }} {% for item in module.css_classes %}{{ item }} {% endfor %}">
- {% spaceless %}
- {% if module.title %}
- <h2>{{ module.title }}</h2>
- {% endif %}
- {% ifequal module.display "tabs" %}
- <div class="group-{{ module.display }}-container">
- <ul>
- {% for sub_module in module.children %}
- {% if not sub_module.is_empty %}<li class="group-tabs-link"><a href="#module_{{ index }}_{{ forloop.counter }}">{{ sub_module.title }}</a></li>{% endif %}
- {% endfor %}
- </ul>
- {% for sub_module in module.children %}
- {% admin_tools_render_dashboard_module sub_module index forloop.counter %}
- {% endfor %}
- </div>
- {% endifequal %}
- {% ifequal module.display "accordion" %}
- {% for sub_module in module.children %}
- {% if not sub_module.is_empty %}<span class="group-accordion-header"><a href="#">{{ sub_module.title }}</a></span>{% endif %}
- {% admin_tools_render_dashboard_module sub_module index forloop.counter %}
- {% endfor %}
- {% else %}
-
- {% endifequal %}
-
-
- {% endspaceless %}
-</div>
-{% endblock %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/link_list.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/link_list.html
deleted file mode 100644
index 97b357e..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/link_list.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% extends "admin_tools/dashboard/module.html" %}
-{% block module_content %}
- <div class="module link-list {% for item in module.css_classes %}{{ item }} {% endfor %}">
-{% if module.title %}
- {% if subindex %}
- <h3>{{ module.title }}</h3>
- {% else %}
- <h2>{{ module.title }}</h2>
- {% endif %}
-{% endif %}
- <ul>
- {% spaceless %}
- {% for child in module.children %}
- <li>
- <a class="{% if child.external %}external{% else %}internal{% endif %}" href="{{ child.url }}" {% if child.description %} title="{{ child.description }}"{% endif %}>{{ child.title }}</a>
- </li>
- {% endfor %}
- {% endspaceless %}
- </ul>
- </div>
-{% endblock %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/model_list.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/model_list.html
deleted file mode 100644
index 7431f8f..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/model_list.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "admin_tools/dashboard/module.html" %}
-{% load i18n %}
-{% block module_content %}
- <div class="module {% for item in module.css_classes %}{{ item }} {% endfor %}">
- {% if module.title %}
- {% if subindex %}
- <h3>{{ module.title }}</h3>
- {% else %}
- <h2>{{ module.title }}</h2>
- {% endif %}
- {% endif %}
-
- {% for child in module.children %}
- <div class="row">
- {% if child.change_url %}<a href="{{ child.change_url }}">{{ child.title }}</a>{% else %}{{ child.title }}{% endif %}
-
- {% if child.add_url or child.change_url %}
- <ul class="actions">
- {% if child.add_url %}<li class="add-link"><a href="{{ child.add_url }}">{% trans "Add" %}</a></li>{% endif %}
- {% if child.change_url %}<li class="change-link"><a href="{{ child.change_url }}">{% trans "Change" %}</a></li>{% endif %}
- </ul>
- {% endif %}
- </div>
- {% endfor %}
- </div>
-{% endblock %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/module_group.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/module_group.html
deleted file mode 100644
index 8e0f256..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/module_group.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% extends "dashboard/module.html" %}
-{% load i18n admin_tools_dashboard_tags %}
-{% block module_content %}
- <div class="group collapsible open">
- <h2 class="collapsible-handler">{{ module.title }}</h2>
- {% for sub_module in module.children %}
- {% admin_tools_render_dashboard_module sub_module forloop.counter %}
- {% endfor %}
- </div>
-{% endblock %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/modules/recent_actions.html b/app/lib/grappelli/templates/admin_tools/dashboard/modules/recent_actions.html
deleted file mode 100644
index 0b7bb9e..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/modules/recent_actions.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "admin_tools/dashboard/module.html" %}
-{% load i18n %}
-{% block module_content %}
-{% if subindex %}
- <div class="module actions {% for item in module.css_classes %}{{ item }} {% endfor %}">
- <h3>{% trans 'Recent Actions' %}</h2>
- <div class="module">
- <h4>{% trans 'My Actions' %}</h3>
-{% else %}
- <div class="module actions {% for item in module.css_classes %}{{ item }} {% endfor %}">
- <h2>{% trans 'Recent Actions' %}</h2>
- <div class="module">
- <h3>{% trans 'My Actions' %}</h3>
-{% endif %}
- {% if module.children %}
- <ul>
- {% for entry in module.children %}
- <li class="{% if entry.is_addition %}add-link{% endif %}{% if entry.is_change %}change-link{% endif %}{% if entry.is_deletion %}delete-link{% endif %}">{% if not entry.is_deletion %}<a href="{{ entry.get_admin_url }}">{% endif %}{{ entry.object_repr }}{% if not entry.is_deletion %}</a>{% endif %}<br /><span class="mini quiet">{% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}</span></li>
- {% endfor %}
- </ul>
- {% else %}
- <p>{% trans 'None Available' %}</p>
- {% endif %}
- </div>
-</div>
-{% endblock %}
diff --git a/app/lib/grappelli/templates/admin_tools/dashboard/preferences_form.html b/app/lib/grappelli/templates/admin_tools/dashboard/preferences_form.html
deleted file mode 100644
index 7da463a..0000000
--- a/app/lib/grappelli/templates/admin_tools/dashboard/preferences_form.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% extends "admin/base_site.html" %}
-
-{% block content %}
-
-<form action="." method="POST">
- {{ form.as_p }}
- <p><input type="submit" value="Save" /></p>
-</form>
-
-{% endblock %}