summaryrefslogtreecommitdiff
path: root/templates/tree.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tree.html')
-rw-r--r--templates/tree.html58
1 files changed, 23 insertions, 35 deletions
diff --git a/templates/tree.html b/templates/tree.html
index 585fc42..670acb0 100644
--- a/templates/tree.html
+++ b/templates/tree.html
@@ -34,38 +34,26 @@ $(function() {
</script>
{% endblock %}
{% block main %}
-
-<ul class="ilist" style="margin-bottom: 10px;">
- <li id="left">
- <ul id="sidemenu">
- {% if user.is_authenticated %}
- <li><a class="gravatar" href="#" title="{{user.email}}"></a></li>
- <li><a href="/user/home"><span class="ui-icon ui-icon-home"></span>{{user|userdisplay}}</a></li>
- {% endif %}
- <li style="border-top: 1px solid black; width: 100%; margin-top: 5px;">&nbsp;</li>
- {% if name %}
- <li><a href="/name/{{name.id}}/add"><span class="ui-icon ui-icon-newwin"></span>Create New Group</a></li>
- {% else %}
- <li><a href="/name/{{profile.home.id}}/add"><span class="ui-icon ui-icon-newwin"></span>Create New Group</a></li>
- {% endif %}
- <li><a href="/user/alias"><span class="ui-icon ui-icon-link"></span>Add Alias</a></li>
- </ul>
- <div class="tabs">
- <ul>
- <li><a href="#mygroups">My Groups</a></li>
- <li><a href="#jstree">All Groups</a></li>
- </ul>
- <div id="jstree"></div>
- <div id="mygroups">My groups</div>
- </div>
- </li>
- <li id="main">
- <div id="headline">
- {% block headline %}<a style="text-decoration: none" href="{% if name %}{{name.url}}{% else %}/user/home{% endif %}">{% if name %}{{name.shortname}}{% else %}Dashboard{% endif %}</a>{% endblock %}
- </div>
- <div>
- {% block content %}{% endblock %}
- </div>
- </li>
-</ul>
-{% endblock %} \ No newline at end of file
+ {% if user.is_authenticated %}
+ <!-- <a class="gravatar" href="#" title="{{user.email}}"></a> -->
+ <!-- <a href="/user/home">{{user|userdisplay}}</a> -->
+ {% endif %}
+ <!--
+ <ul class="nav nav-tabs">
+ <li class="active">
+ <a href="#mygroups">My Groups</a>
+ </li>
+ <li>
+ <a href="#jstree">All Groups</a>
+ </li>
+ </ul>
+ -->
+ <!-- <div id="jstree"></div> -->
+ <!-- <div id="mygroups">My groups</div> -->
+ <!--
+ <div id="headline">
+ {% block headline %}<a style="text-decoration: none" href="{% if name %}{{name.url}}{% else %}/user/home{% endif %}">{% if name %}{{name.shortname}}{% else %}Dashboard{% endif %}</a>{% endblock %}
+ </div>
+ -->
+ {% block content %}{% endblock %}
+{% endblock %}