mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-04 15:17:10 +00:00
main toolbar: add dropbox to select headlines sort mode
This commit is contained in:
14
tt-rss.php
14
tt-rss.php
@@ -184,14 +184,24 @@ window.onload = init;
|
||||
|
||||
<?php } ?>
|
||||
|
||||
<?php echo __('View:') ?>
|
||||
<select name="view_mode" onchange="viewModeChanged()">
|
||||
<option selected value="adaptive"><?php echo __('Adaptive') ?></option>
|
||||
<option value="all_articles"><?php echo __('All Articles') ?></option>
|
||||
<option value="marked"><?php echo __('Starred') ?></option>
|
||||
<option value="unread"><?php echo __('Unread') ?></option>
|
||||
<!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
|
||||
</select>
|
||||
|
||||
|
||||
<?php echo __('Order by:') ?>
|
||||
|
||||
<select name="order_by" onchange="viewModeChanged()">
|
||||
<option selected value="default"><?php echo __('Default') ?></option>
|
||||
<option value="date"><?php echo __('Date') ?></option>
|
||||
<option value="title"><?php echo __('Title') ?></option>
|
||||
<option value="score"><?php echo __('Score') ?></option>
|
||||
</select>
|
||||
|
||||
|
||||
<?php echo __('Limit:') ?>
|
||||
<?php
|
||||
$limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
|
||||
|
||||
Reference in New Issue
Block a user