aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/group_side.tpl
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-03-03 19:19:35 -0500
committerSimon L'nu <simon.lnu@gmail.com>2012-03-03 19:19:35 -0500
commit64400e8d59cab64cfa57b969df88a4cafe76f168 (patch)
tree5815b02950bb3a4f7dda3a126c1bbfaf1338bf38 /view/theme/dispy/group_side.tpl
parent1bed4010aa5dc711be674b41fac97d1448f4e5cd (diff)
downloadvolse-hubzilla-64400e8d59cab64cfa57b969df88a4cafe76f168.tar.gz
volse-hubzilla-64400e8d59cab64cfa57b969df88a4cafe76f168.tar.bz2
volse-hubzilla-64400e8d59cab64cfa57b969df88a4cafe76f168.zip
first commit for dispy New Edition
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
Diffstat (limited to 'view/theme/dispy/group_side.tpl')
-rw-r--r--[-rwxr-xr-x]view/theme/dispy/group_side.tpl12
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>