mirror of
https://github.com/friendica/friendica
synced 2024-11-15 21:33:54 +00:00
21 lines
714 B
Smarty
21 lines
714 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
<div id="saved-search-list" class="widget">
|
|
<h3 class="title">{{$title}}</h3>
|
|
|
|
<ul id="saved-search-ul">
|
|
{{foreach $saved as $search}}
|
|
<li class="tool {{if $search.selected}}selected{{/if}}">
|
|
<a href="{{$search.searchpath}}" class="label">{{$search.term}}</a>
|
|
<a href="search/saved/remove?term={{$search.encodedterm}}&return_url={{$return_url}}" class="action icon s10 delete" title="{{$search.delete}}" onclick="return confirmDelete();"></a>
|
|
</li>
|
|
{{/foreach}}
|
|
</ul>
|
|
|
|
{{$searchbox nofilter}}
|
|
|
|
</div>
|