[vier] Add mute author server link in photo menu
This commit is contained in:
parent
6ecc9c4cba
commit
544ce206d7
7 changed files with 101 additions and 9 deletions
|
@ -57,7 +57,7 @@
|
|||
{{if $c[0]['total'] > 0}}
|
||||
<tr>
|
||||
<th>{{$c[0]['platform']}}</th>
|
||||
<th><strong>{{$c[0]['total']}}</strong></td>
|
||||
<th><strong>{{$c[0]['total']}}</strong></th>
|
||||
<td>{{$c[0]['network']}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
27
view/templates/settings/server/action.tpl
Normal file
27
view/templates/settings/server/action.tpl
Normal file
|
@ -0,0 +1,27 @@
|
|||
<div id="settings-server" class="generic-page-wrapper">
|
||||
<h1>{{$l10n.title}}</h1>
|
||||
|
||||
<form action="{{$action}}" method="POST">
|
||||
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
||||
<input type="hidden" name="redirect_url" value="settings/server">
|
||||
|
||||
<p>{{$l10n.action}}</p>
|
||||
|
||||
{{if $l10n.desc}}
|
||||
<p>{{$l10n.desc}}</p>
|
||||
{{/if}}
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>{{$l10n.siteName}}</th>
|
||||
<td>{{$GServer->siteName}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{{$l10n.siteUrl}}</th>
|
||||
<td><a href="{{$GServer->url}}">{{$GServer->url}}</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p><button type="submit" class="btn btn-primary">{{$l10n.submit}}</button></p>
|
||||
</form>
|
||||
</div>
|
|
@ -13,8 +13,14 @@
|
|||
<table class="table table-striped table-condensed table-bordered">
|
||||
<tr>
|
||||
<th>{{$l10n.siteName}}</th>
|
||||
<th><span title="{{$l10n.ignored_title}}">{{$l10n.ignored}} <i class="fa fa-question-circle"></i></span></th>
|
||||
<th><span title="{{$l10n.delete_title}}"><i class="fa fa-trash" aria-hidden="true" title="{{$l10n.delete}}"></i> <span class="sr-only">{{$l10n.delete}}</span> <i class="fa fa-question-circle"></i></span></th>
|
||||
<th><span title="{{$l10n.ignored_title}}">{{$l10n.ignored}} <i class="fa fa-question-circle icon-question-sign"></i></span></th>
|
||||
<th>
|
||||
<span title="{{$l10n.delete_title}}">
|
||||
<i class="fa fa-trash icon-trash" aria-hidden="true" title="{{$l10n.delete}}"></i>
|
||||
<span class="sr-only">{{$l10n.delete}}</span>
|
||||
<i class="fa fa-question-circle icon-question-sign"></i>
|
||||
</span>
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
{{foreach $servers as $index => $server}}
|
||||
|
|
|
@ -3281,3 +3281,7 @@ fbrowser.photo .photo-album-image-wrapper { margin-left: 10px; }
|
|||
#colorbox img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
#settings-server td + td {
|
||||
text-align: center;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue