A free, self-hostable aggregator…
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.1 KiB

<?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>