aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/quattro/saved_searches_aside.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-26 02:00:14 -0700
committerfriendica <info@friendica.com>2012-03-26 02:00:14 -0700
commit63fa5f6c7706bd150099821e9bf8826cb1cf4dcd (patch)
tree925418add983b98ee27542289b1418c7fe7a9e61 /view/theme/quattro/saved_searches_aside.tpl
parent3431d0b42705524b81c9fe71279aff6464efc69f (diff)
parent579c4f3079b9d1912cab6f70a9d95ebab1ca8743 (diff)
downloadvolse-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/quattro/saved_searches_aside.tpl')
-rwxr-xr-xview/theme/quattro/saved_searches_aside.tpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/view/theme/quattro/saved_searches_aside.tpl b/view/theme/quattro/saved_searches_aside.tpl
new file mode 100755
index 000000000..9c10a26de
--- /dev/null
+++ b/view/theme/quattro/saved_searches_aside.tpl
@@ -0,0 +1,15 @@
+<div id="saved-search-list" class="widget">
+ <h3 class="title">$title</h3>
+
+ <ul id="saved-search-ul">
+ {{ for $saved as $search }}
+ <li class="tool {{if $search.selected}}selected{{endif}}">
+ <a href="network/?f=&search=$search.encodedterm" class="label" >$search.term</a>
+ <a href="network/?f=&remove=1&search=$search.encodedterm" class="action icon s10 delete" title="$search.delete" onclick="return confirmDelete();"></a>
+ </li>
+ {{ endfor }}
+ </ul>
+
+ $searchbox
+
+</div>