mirror of
https://github.com/friendica/friendica
synced 2024-11-15 17:33:54 +00:00
25 lines
542 B
Smarty
25 lines
542 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="adminpage">
|
|
<h2>{{$banner}}</h2>
|
|
|
|
<div id="failed_updates_desc">{{$desc nofilter}}</div>
|
|
|
|
{{if $failed}}
|
|
{{foreach $failed as $f}}
|
|
<h4>{{$f}}</h4>
|
|
|
|
<ul>
|
|
<li><a href="{{$baseurl}}/admin/dbsync/mark/{{$f}}">{{$mark}}</a></li>
|
|
<li><a href="{{$baseurl}}/admin/dbsync/update/{{$f}}">{{$apply}}</a></li>
|
|
</ul>
|
|
|
|
<hr />
|
|
{{/foreach}}
|
|
{{/if}}
|
|
</div>
|