diff options
| author | 2014-10-02 21:38:18 +0200 | |
|---|---|---|
| committer | 2014-10-02 21:38:18 +0200 | |
| commit | 370b51815071a36574ef40f5661de4ba17f071c9 (patch) | |
| tree | 3c33345d3e0cd6b68a27c21e24036a9c4b2c0d75 | |
| parent | 43c1183c93d149f74dbb02887cfb0ca86c71fed8 (diff) | |
Filter link on feed updating page
See https://github.com/marienfressinaud/FreshRSS/issues/646
| -rw-r--r-- | app/views/helpers/feed/update.phtml | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml index 4a6425c45..3f6b32076 100644 --- a/app/views/helpers/feed/update.phtml +++ b/app/views/helpers/feed/update.phtml @@ -1,9 +1,11 @@ <div class="post"> - <!-- <a href="<?php echo _url ('index', 'index'); ?>"><?php echo Minz_Translate::t ('back_to_rss_feeds'); ?></a> <?php echo Minz_Translate::t ('or'); ?> <a href="<?php echo _url ('index', 'index', 'get', 'f_' . $this->feed->id ()); ?>"><?php echo Minz_Translate::t ('filter'); ?></a> --> - <h1><?php echo $this->feed->name (); ?></h1> <?php echo $this->feed->description (); ?> + <a href="<?php echo _url('index', 'index', 'get', 'f_' . $this->feed->id ()); ?>"><?php echo _i('link'); ?> <?php echo _t('filter'); ?></a> + <?php echo _t('or'); ?> + <a href="<?php echo _url('stats', 'repartition', 'id', $this->feed->id()); ?>"><?php echo _i('stats'); ?> <?php echo _t('stats'); ?></a> + <?php $nbEntries = $this->feed->nbEntries (); ?> <?php if ($this->feed->inError ()) { ?> @@ -67,13 +69,7 @@ </label> </div> </div> - <div class="form-group"> - <div class="group-controls"> - <a href="<?php echo _url('stats', 'repartition', 'id', $this->feed->id()); ?>"> - <?php echo _i('stats'); ?> <?php echo _t('stats'); ?> - </a> - </div> - </div> + <div class="form-group form-actions"> <div class="group-controls"> <button class="btn btn-important"><?php echo _t('save'); ?></button> |
