summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/_header.html
diff options
context:
space:
mode:
authorDhiru <dhiru@labadmin-P5E-Deluxe.(none)>2012-06-16 18:38:21 +0530
committerDhiru <dhiru@labadmin-P5E-Deluxe.(none)>2012-06-16 18:38:21 +0530
commit6d7c90142f6cd3f08e0ee28216392c421711a209 (patch)
tree8f09a817c710358a680908fd3c0e9abb643974bc /gstudio/templates/gstudio/_header.html
parentc09d5d8fc986e4df80e617d298ae3ecef00860fa (diff)
downloadgnowsys-6d7c90142f6cd3f08e0ee28216392c421711a209.tar.gz
cleaned up the interface, search and rss feeds in the header, home page, third column removed, versions as a series of '+' marks below the title.
Diffstat (limited to 'gstudio/templates/gstudio/_header.html')
-rw-r--r--gstudio/templates/gstudio/_header.html26
1 files changed, 14 insertions, 12 deletions
diff --git a/gstudio/templates/gstudio/_header.html b/gstudio/templates/gstudio/_header.html
index 2e05c8c..4a913e9 100644
--- a/gstudio/templates/gstudio/_header.html
+++ b/gstudio/templates/gstudio/_header.html
@@ -6,15 +6,17 @@
<div class="branding">&nbsp; Gnowledge Studio </div>
<!-- Title -->
- <div class="admin-title"> {% if grappelli_admin_title %}{{
+ <div class="admin-title">
+ <a href="/" title="Home">Home</a>
+ | {% if grappelli_admin_title %}{{
grappelli_admin_title }}{% else %}{% get_admin_title %}{% endif %}
- | <a href="/">Home</a>
- | <a href="{{ get_absolute_url }}/objects">objects</a>
+
+ | <a href="{{ get_absolute_url }}/objects" title="Objects">Objects</a>
{% if user.is_authenticated %}
{% if user.is_staff %}
- | <a href="{{ get_absolute_url }}/admin">Admin Dashboard</a>
+ | <a href="{{ get_absolute_url }}/admin" title="Admin Dashboard">Admin Dashboard</a>
{% endif %}
{% endif %}
@@ -26,18 +28,18 @@
<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>
+ <a href="javascript://" class="user-options-handler collapse-handler" title="{% firstof user.first_name user.username %}">{% 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 }}">
+ <li><a href="{{ password_change_url }}" title="Change Password">
{% else %}
<li><a href="{{ root_path }}password_change/">
{% endif %}
{% trans 'Change password' %}</a></li>
<!-- Logout -->
- <li><a href="{{get_absoulute_url}}/accounts/logout/">
+ <li><a href="{{get_absoulute_url}}/accounts/logout/" title="Log out">
{% trans 'Log out' %}</a></li>
</ul>
@@ -47,20 +49,20 @@
<!-- JS tests -->
{% url test-index as testindexurl %}
{% if testindexurl %}
- <li><a href="{{ testindexurl }}">{% trans 'Tests' %}</a></li>
+ <li><a href="{{ testindexurl }}" title="Tests">{% trans 'Tests' %}</a></li>
{% endif %}
<!-- Documentation -->
{% url django-admindocs-docroot as docsroot %}
{% if docsroot %}
- <li><a href="{{ docsroot }}">{% trans 'Documentation' %}</a></li>
+ <li><a href="{{ docsroot }}" title="Documentation">{% trans 'Documentation' %}</a></li>
{% endif %}
- <li><a href="http://github.com/gnowgi/django-gstudio">Code</a></li>
+ <li><a href="http://github.com/gnowgi/django-gstudio" title="Code">Code</a></li>
{% endblock %}
</ul>
{% else %}
<ul id="user-tools">
- <li><a href="{{root_path}}/accounts/login">{% trans 'Login' %}</a></li>
- <li>Not registered ? <a href="{{root_path}}/accounts/register">{% trans 'Register' %}</a></li>
+ <li><a href="{{root_path}}/accounts/login" title="Login">{% trans 'Login' %}</a></li>
+ <li>Not registered ? <a href="{{root_path}}/accounts/register" title="Register">{% trans 'Register' %}</a></li>
</ul>