diff options
| author | 2014-11-08 09:34:59 -0500 | |
|---|---|---|
| committer | 2014-11-08 09:34:59 -0500 | |
| commit | 76fbc8c719b9d048f572c6c865c309d1e25b40f9 (patch) | |
| tree | 3790513d3f5fe3b4a49c8c8b5bf282fff8a556af /app/views/stats | |
| parent | 0b7af8f8719f698b67e31b5a84fa19b0f20c0590 (diff) | |
| parent | 960abfcc6558d8421423a42b7781184dad0d9bc7 (diff) | |
Merge pull request #701 from FreshRSS/stats
Add more info in article repartition page
Diffstat (limited to 'app/views/stats')
| -rw-r--r-- | app/views/stats/repartition.phtml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/views/stats/repartition.phtml b/app/views/stats/repartition.phtml index 32268a546..85a750bd0 100644 --- a/app/views/stats/repartition.phtml +++ b/app/views/stats/repartition.phtml @@ -30,6 +30,23 @@ <?php }?> <div class="stat"> + <table> + <tr> + <th><?php echo _t('status_total'); ?></th> + <th><?php echo _t('status_read'); ?></th> + <th><?php echo _t('status_unread'); ?></th> + <th><?php echo _t('status_favorites'); ?></th> + </tr> + <tr> + <td><?php echo $this->repartition['total']; ?></td> + <td><?php echo $this->repartition['read']; ?></td> + <td><?php echo $this->repartition['unread']; ?></td> + <td><?php echo $this->repartition['favorite']; ?></td> + </tr> + </table> + </div> + + <div class="stat"> <h2><?php echo _t('stats_entry_per_hour', $this->averageHour); ?></h2> <div id="statsEntryPerHour" style="height: 300px"></div> </div> |
