diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-04-04 02:14:26 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-04-04 02:14:26 -0400 |
commit | 2871e28df702f32fc780a84642f101931907d458 (patch) | |
tree | 3d1e6ce8c5f044467d95844328ac15a4c6e79d0a /view/theme/loozah/group_side.tpl | |
parent | 06942b36549668eb067650831f286d96aab14a40 (diff) | |
parent | 8e928d101b628c5f562cee840882892f05a1b838 (diff) | |
download | volse-hubzilla-2871e28df702f32fc780a84642f101931907d458.tar.gz volse-hubzilla-2871e28df702f32fc780a84642f101931907d458.tar.bz2 volse-hubzilla-2871e28df702f32fc780a84642f101931907d458.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
display settings hooks
re-opened bug #363
this is better
include contact_widgets for categories_widget when doing updates
remove loozah themes which fell too far behind to recover
smal fix
german translation for right_aside
make right_aside translatable and provide german translation... and some css-fixes
suppress duplicates in search
make contact ssl_policy change a function since it is used in a few places
more ssl policy fixes and prevent delivery to soapbox when using local delivery
don't change ssl settings on local photos for remote contact
* master:
Diffstat (limited to 'view/theme/loozah/group_side.tpl')
-rwxr-xr-x | view/theme/loozah/group_side.tpl | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/view/theme/loozah/group_side.tpl b/view/theme/loozah/group_side.tpl deleted file mode 100755 index a1fc70a22..000000000 --- a/view/theme/loozah/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"><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> - </div> -</div> - - |