diff options
author | friendica <info@friendica.com> | 2012-03-26 02:00:14 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-26 02:00:14 -0700 |
commit | 63fa5f6c7706bd150099821e9bf8826cb1cf4dcd (patch) | |
tree | 925418add983b98ee27542289b1418c7fe7a9e61 /view/theme/duepuntozero/group_side.tpl | |
parent | 3431d0b42705524b81c9fe71279aff6464efc69f (diff) | |
parent | 579c4f3079b9d1912cab6f70a9d95ebab1ca8743 (diff) | |
download | volse-hubzilla-63fa5f6c7706bd150099821e9bf8826cb1cf4dcd.tar.gz volse-hubzilla-63fa5f6c7706bd150099821e9bf8826cb1cf4dcd.tar.bz2 volse-hubzilla-63fa5f6c7706bd150099821e9bf8826cb1cf4dcd.zip |
Merge pull request #172 from fabrixxm/master
Rearrange theme tpls
Diffstat (limited to 'view/theme/duepuntozero/group_side.tpl')
-rwxr-xr-x | view/theme/duepuntozero/group_side.tpl | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/view/theme/duepuntozero/group_side.tpl b/view/theme/duepuntozero/group_side.tpl deleted file mode 100755 index 0353b1d2c..000000000 --- a/view/theme/duepuntozero/group_side.tpl +++ /dev/null @@ -1,28 +0,0 @@ -<div class="widget" id="group-sidebar"> -<h3>$title</h3> - -<div id="sidebar-group-list"> - <ul id="sidebar-group-ul"> - {{ for $groups as $group }} - <li class="sidebar-group-li"> - {{ 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" title="$edittext"><span id="edit-sidebar-group-element-$group.id" class="group-edit-icon iconspacer small-pencil"></span></a> - {{ endif }} - <a id="sidebar-group-element-$group.id" 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> - </div> -</div> - - |