diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 12:34:22 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 12:34:22 +0100 |
commit | a86fd26bd86945fe75b7220e149b8986f88feb01 (patch) | |
tree | 75d3f73e9bcb4fc990bc35b0781d479f40ac9cfb /view/saved_searches_aside.tpl | |
parent | 590f1d2b25c00fc7bea85cb5de1a4f667ea86af1 (diff) | |
download | volse-hubzilla-a86fd26bd86945fe75b7220e149b8986f88feb01.tar.gz volse-hubzilla-a86fd26bd86945fe75b7220e149b8986f88feb01.tar.bz2 volse-hubzilla-a86fd26bd86945fe75b7220e149b8986f88feb01.zip |
more work on quattro. remove html from php for groups and saved searches widgets.
Diffstat (limited to 'view/saved_searches_aside.tpl')
-rw-r--r-- | view/saved_searches_aside.tpl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/view/saved_searches_aside.tpl b/view/saved_searches_aside.tpl new file mode 100644 index 000000000..9c10a26de --- /dev/null +++ b/view/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> |