diff options
| author | 2014-07-22 13:56:01 +0200 | |
|---|---|---|
| committer | 2014-07-22 13:56:01 +0200 | |
| commit | 72293427ac222dba03e88b2e34abc41e12a657c5 (patch) | |
| tree | 598c94fe0298eeefb5f1d71fd723eeba1c02d588 /app/views | |
| parent | 937cb4b066f07888dabe8400b71be6633a19a1d6 (diff) | |
Idle feeds: show tooltip with last update date
https://github.com/marienfressinaud/FreshRSS/issues/544
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/stats/idle.phtml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/stats/idle.phtml b/app/views/stats/idle.phtml index f62fa8d8b..a167fcccb 100644 --- a/app/views/stats/idle.phtml +++ b/app/views/stats/idle.phtml @@ -1,17 +1,17 @@ <?php $this->partial('aside_stats'); ?> <div class="post content"> - <a href="<?php echo _url ('index', 'index'); ?>"><?php echo _t ('back_to_rss_feeds'); ?></a> + <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('back_to_rss_feeds'); ?></a> - <h1><?php echo _t ('stats_idle'); ?></h1> + <h1><?php echo _t('stats_idle'); ?></h1> - <?php foreach ($this->idleFeeds as $period => $feeds){ ?> + <?php foreach ($this->idleFeeds as $period => $feeds) { ?> <div class="stat"> - <h2><?php echo _t ($period); ?></h2> + <h2><?php echo _t($period); ?></h2> <ul> - <?php foreach ($feeds as $feed){ ?> - <li><a href="<?php echo _url('configure', 'feed', 'id', $feed['id']); ?>"><?php echo $feed['name']; ?></a></li> + <?php foreach ($feeds as $feed) { ?> + <li><a href="<?php echo _url('configure', 'feed', 'id', $feed['id']); ?>" title="<?php echo date('Y-m-d', $feed['last_date']); ?>"><?php echo $feed['name']; ?></a></li> <?php } ?> </ul> </div> |
