diff options
author | Tobias Hößl <tobias@hoessl.eu> | 2012-03-09 10:00:12 +0000 |
---|---|---|
committer | Tobias Hößl <tobias@hoessl.eu> | 2012-03-09 10:00:12 +0000 |
commit | 635958e11da2f5a0d587b66968453064c2d41f13 (patch) | |
tree | 9e9b21d45551772a4aac8a54e3bafa382681ed70 /view/theme/dispy/group_side.tpl | |
parent | 02a9fd5dc1d1d9e848e2f406f2e13c4cf0ce228b (diff) | |
parent | 2ce78253aeda8672e12f18f0963f52cd4a35e546 (diff) | |
download | volse-hubzilla-635958e11da2f5a0d587b66968453064c2d41f13.tar.gz volse-hubzilla-635958e11da2f5a0d587b66968453064c2d41f13.tar.bz2 volse-hubzilla-635958e11da2f5a0d587b66968453064c2d41f13.zip |
Merge branch 'master' of git://github.com/friendica/friendica
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> |