diff options
author | Simon <simon@kisikew.org> | 2012-03-03 16:23:07 -0800 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-03 16:23:07 -0800 |
commit | f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3 (patch) | |
tree | 8d8ff10c21a7490a13b7c472dc48269c7017df47 /view/theme/dispy/group_side.tpl | |
parent | 74866a96de8f1cdf3114e05530641901e89dca42 (diff) | |
parent | 09c2f81cb30a74652b81ab48ffb44cfdad097cb6 (diff) | |
download | volse-hubzilla-f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3.tar.gz volse-hubzilla-f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3.tar.bz2 volse-hubzilla-f3c1e2c546a7c9b5c3d04796d37dce6ac5d039d3.zip |
Merge pull request #73 from simonlnu/master
dispy! (and minor formatting)
Diffstat (limited to 'view/theme/dispy/group_side.tpl')
-rw-r--r--[-rwxr-xr-x] | view/theme/dispy/group_side.tpl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/view/theme/dispy/group_side.tpl b/view/theme/dispy/group_side.tpl index a1fc70a22..516d70d5b 100755..100644 --- a/view/theme/dispy/group_side.tpl +++ b/view/theme/dispy/group_side.tpl @@ -5,23 +5,25 @@ <ul id="sidebar-group-ul"> {{ for $groups as $group }} <li class="sidebar-group-li"> + <a href="$group.href" class="sidebar-group-element {{ if $group.selected }}group-selected{{ endif }}">$group.text</a> + {{ if $group.edit }} + <a + class="groupsideedit" + href="$group.edit.href" title="$edittext"><span class="icon small-pencil"></span></a> + {{ endif }} {{ if $group.cid }} <input type="checkbox" class="{{ if $group.selected }}ticked{{ else }}unticked {{ endif }} action" onclick="contactgroupChangeMember('$group.id','$group.cid');return true;" {{ if $group.ismember }}checked="checked"{{ endif }} /> - {{ endif }} - {{ if $group.edit }} - <a class="groupsideedit" href="$group.edit.href"><span class="icon small-pencil"></span></a> {{ endif }} - <a class="sidebar-group-element {{ if $group.selected }}group-selected{{ endif }}" href="$group.href">$group.text</a> </li> {{ endfor }} </ul> </div> <div id="sidebar-new-group"> - <a href="group/new">$createtext</a> + <a href="group/new" title="$createtext"><span class="action text add">$createtext</span></a> </div> </div> |