diff options
author | friendica <info@friendica.com> | 2012-11-06 20:39:00 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-06 20:39:00 -0800 |
commit | 6db8b5bbd213693587de6d696e401d5b936b3b80 (patch) | |
tree | acb3019ae59310c6fe14238cc698ed13e7907f07 /view/theme/diabook/group_side.tpl | |
parent | 295b865d065b12c6686592bd34739ac9d9b87978 (diff) | |
download | volse-hubzilla-6db8b5bbd213693587de6d696e401d5b936b3b80.tar.gz volse-hubzilla-6db8b5bbd213693587de6d696e401d5b936b3b80.tar.bz2 volse-hubzilla-6db8b5bbd213693587de6d696e401d5b936b3b80.zip |
All the themes except one are horked anway
Diffstat (limited to 'view/theme/diabook/group_side.tpl')
-rw-r--r-- | view/theme/diabook/group_side.tpl | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/view/theme/diabook/group_side.tpl b/view/theme/diabook/group_side.tpl deleted file mode 100644 index ce4b25fbf..000000000 --- a/view/theme/diabook/group_side.tpl +++ /dev/null @@ -1,34 +0,0 @@ -<div id="profile_side" > - <div class=""> - <h3 style="margin-left: 2px;">$title<a href="group/new" title="$createtext" class="icon text_add"></a></h3> - </div> - - <div id="sidebar-group-list"> - <ul class="menu-profile-side"> - {{ for $groups as $group }} - <li class="menu-profile-list"> - <a href="$group.href" class="menu-profile-list-item"> - <span class="menu-profile-icon {{ if $group.selected }}group_selected{{else}}group_unselected{{ endif }}"></span> - $group.text - </a> - {{ if $group.edit }} - <a href="$group.edit.href" class="action"><span class="icon text_edit" ></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 }} - </li> - {{ endfor }} - </ul> - </div> - {{ if $ungrouped }} - <div id="sidebar-ungrouped"> - <a href="nogroup">$ungrouped</a> - </div> - {{ endif }} -</div> - |