]> git.mxchange.org Git - friendica.git/blob - view/templates/settings/server/index.tpl
Merge pull request #13374 from friendica/update-htaccess
[friendica.git] / view / templates / settings / server / index.tpl
1 <div id="settings-server" class="generic-page-wrapper">
2         <h1>{{$l10n.title}} ({{$count}})</h1>
3
4         <p>{{$l10n.desc nofilter}}</p>
5
6         {{$paginate nofilter}}
7
8         <form action="" method="POST">
9                 <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
10
11                 <p><button type="submit" class="btn btn-primary">{{$l10n.submit}}</button></p>
12
13                 <table class="table table-striped table-condensed table-bordered">
14                         <tr>
15                                 <th>{{$l10n.siteName}}</th>
16                                 <th><span title="{{$l10n.ignored_title}}">{{$l10n.ignored}} <i class="fa fa-question-circle icon-question-sign"></i></span></th>
17                                 <th>
18                                         <span title="{{$l10n.delete_title}}">
19                                                 <i class="fa fa-trash icon-trash" aria-hidden="true" title="{{$l10n.delete}}"></i>
20                                                 <span class="sr-only">{{$l10n.delete}}</span>
21                                                 <i class="fa fa-question-circle icon-question-sign"></i>
22                                         </span>
23                                 </th>
24                         </tr>
25
26 {{foreach $servers as $index => $server}}
27                         <tr>
28                                 <td>
29                                         <a href="{{$server->gserver->url}}">{{($server->gserver->siteName) ? $server->gserver->siteName : $server->gserver->url}} <i class="fa fa-external-link"></i></a>
30                                 </td>
31                                 <td>
32                         {{include file="field_checkbox.tpl" field=$ignoredCheckboxes[$index]}}
33                                 </td>
34                                 <td>
35                         {{include file="field_checkbox.tpl" field=$deleteCheckboxes[$index]}}
36                                 </td>
37                         </tr>
38 {{/foreach}}
39
40                 </table>
41                 <p><button type="submit" class="btn btn-primary">{{$l10n.submit}}</button></p>
42         </form>
43
44     {{$paginate nofilter}}
45 </div>