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/includes_grappelli/header.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/includes_grappelli/header.html')
-rw-r--r-- | app/lib/grappelli/templates/admin/includes_grappelli/header.html | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/app/lib/grappelli/templates/admin/includes_grappelli/header.html b/app/lib/grappelli/templates/admin/includes_grappelli/header.html deleted file mode 100644 index 77a0ad9..0000000 --- a/app/lib/grappelli/templates/admin/includes_grappelli/header.html +++ /dev/null @@ -1,46 +0,0 @@ -{% load i18n grp_tags %} - -<div id="header"> - <div class="branding"> </div> - <!-- Title --> - <div class="admin-title">{% if grappelli_admin_title %}{{ grappelli_admin_title }}{% else %}{% get_admin_title %}{% endif %}</div> - {% if user.is_authenticated and user.is_staff %} - <ul id="user-tools"> - <!-- Username --> - <li class="user-options-container collapse closed"> - <a href="javascript://" class="user-options-handler collapse-handler">{% firstof user.first_name user.username %}</a> - <ul class="user-options"> - <!-- Change Password --> - {% url admin:password_change as password_change_url %} - {% if password_change_url %} - <li><a href="{{ password_change_url }}"> - {% else %} - <li><a href="{{ root_path }}password_change/"> - {% endif %} - {% trans 'Change password' %}</a></li> - <!-- Logout --> - {% url admin:logout as logout_url %} - {% if logout_url %} - <li><a href="{{ logout_url }}"> - {% else %} - <li><a href="{{ root_path }}logout/"> - {% endif %} - {% trans 'Log out' %}</a></li> - </ul> - </li> - <!-- Userlinks --> - {% block userlinks %} - <!-- JS tests --> - {% url test-index as testindexurl %} - {% if testindexurl %} - <li><a href="{{ testindexurl }}">{% trans 'Tests' %}</a></li> - {% endif %} - <!-- Documentation --> - {% url django-admindocs-docroot as docsroot %} - {% if docsroot %} - <li><a href="{{ docsroot }}">{% trans 'Documentation' %}</a></li> - {% endif %} - {% endblock %} - </ul> - {% endif %} -</div> |