mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-26 08:47:12 +00:00
implement catchup with selectable updated criteria
This commit is contained in:
12
index.php
12
index.php
@@ -194,9 +194,15 @@
|
||||
onclick="viewCurrentFeed()">
|
||||
<?php echo __('Update') ?></button>
|
||||
|
||||
<button dojoType="dijit.form.Button"
|
||||
onclick="catchupCurrentFeed()">
|
||||
<?php echo __('Mark as read') ?></button>
|
||||
<select title="<?php echo __('Mark feed as read') ?>"
|
||||
onchange="catchupCurrentFeed(this)"
|
||||
dojoType="dijit.form.Select" name="catchup_feed">
|
||||
<option selected="selected" value="default"><?php echo __('Mark as read') ?></option>
|
||||
<option value="all"><?php echo __('All articles') ?></option>
|
||||
<option value="1day"><?php echo __('Older than one day') ?></option>
|
||||
<option value="1week"><?php echo __('Older than one week') ?></option>
|
||||
<option value="2weeks"><?php echo __('Older than two weeks') ?></option>
|
||||
</select>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user