blob: 041941e39458a3552370932f55a276e32213be02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php $this->partial('aside_configure'); ?>
<div class="post">
<a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
<h1><?= _t('admin.update') ?></h1>
<p>
<?= _i('help') ?> <?= _t('admin.update.current_version', FRESHRSS_VERSION) ?>
</p>
<p>
<?= _t('admin.update.last', $this->last_update_time) ?>
</p>
<?php if (!empty($this->message)) { ?>
<?php
$class = 'alert-warn';
switch ($this->message['status']) {
case 'bad':
$class = 'alert-error';
break;
case 'latest':
$class = 'alert-success';
break;
default:
$class = 'alert-warn';
break;
}
?>
<p class="alert <?= $class ?>">
<span class="alert-head"><?= $this->message['title'] ?></span>
<?= $this->message['body'] ?>
</p>
<?php } ?>
<?php
if (empty($this->message) || $this->message['status'] !== 'good') {
?>
<p>
<a href="<?= _url('update', 'check') ?>" class="btn"><?= _t('admin.update.check') ?></a>
</p>
<?php } ?>
<?php if ($this->update_to_apply) { ?>
<a class="btn btn-important" href="<?= _url('update', 'apply') ?>"><?= _t('admin.update.apply') ?></a>
<?php } ?>
</div>
|