diff options
| author | 2014-01-26 08:54:52 -0500 | |
|---|---|---|
| committer | 2014-01-26 08:54:52 -0500 | |
| commit | b0641fd0ebcaa02dcbeb2983703bff6516f93487 (patch) | |
| tree | c709673e8e5622e73c7b06cd2f0c92a103660873 /app/views/index | |
| parent | 5ad19cddc179e3528bd90d4bea8c97518e65bf51 (diff) | |
Modification des statistiques.
Ajout de la liste des 10 plus gros contributeurs
Ajout de règles CSS pour les thèmes Flat et Dark
Modification de l'affichage des camemberts (tri par nombre qui remplace le tri alphabétique)
Diffstat (limited to 'app/views/index')
| -rw-r--r-- | app/views/index/stats.phtml | 37 |
1 files changed, 29 insertions, 8 deletions
diff --git a/app/views/index/stats.phtml b/app/views/index/stats.phtml index 487c50a4b..ae9db172b 100644 --- a/app/views/index/stats.phtml +++ b/app/views/index/stats.phtml @@ -16,23 +16,23 @@ <tbody> <tr> <th><?php echo Minz_Translate::t ('status_total')?></th> - <td><?php echo $this->repartition['main_stream']['total']?></td> - <td><?php echo $this->repartition['all_feeds']['total']?></td> + <td class="numeric"><?php echo $this->repartition['main_stream']['total']?></td> + <td class="numeric"><?php echo $this->repartition['all_feeds']['total']?></td> </tr> <tr> <th><?php echo Minz_Translate::t ('status_read')?></th> - <td><?php echo $this->repartition['main_stream']['read']?></td> - <td><?php echo $this->repartition['all_feeds']['read']?></td> + <td class="numeric"><?php echo $this->repartition['main_stream']['read']?></td> + <td class="numeric"><?php echo $this->repartition['all_feeds']['read']?></td> </tr> <tr> <th><?php echo Minz_Translate::t ('status_unread')?></th> - <td><?php echo $this->repartition['main_stream']['unread']?></td> - <td><?php echo $this->repartition['all_feeds']['unread']?></td> + <td class="numeric"><?php echo $this->repartition['main_stream']['unread']?></td> + <td class="numeric"><?php echo $this->repartition['all_feeds']['unread']?></td> </tr> <tr> <th><?php echo Minz_Translate::t ('status_favorites')?></th> - <td><?php echo $this->repartition['main_stream']['favorite']?></td> - <td><?php echo $this->repartition['all_feeds']['favorite']?></td> + <td class="numeric"><?php echo $this->repartition['main_stream']['favorite']?></td> + <td class="numeric"><?php echo $this->repartition['all_feeds']['favorite']?></td> </tr> </tbody> </table> @@ -55,6 +55,27 @@ <div id="statsEntryPerCategoryLegend"></div> </div> + <div class="stat"> + <h2><?php echo Minz_Translate::t ('stats_top_feed')?></h2> + <table> + <thead> + <tr> + <th><?php echo Minz_Translate::t ('feed')?></th> + <th><?php echo Minz_Translate::t ('category')?></th> + <th><?php echo Minz_Translate::t ('stats_entry_count')?></th> + </tr> + </thead> + <tbody> + <?php foreach ($this->topFeed as $feed):?> + <tr> + <td><?php echo $feed['name']?></td> + <td><?php echo $feed['category']?></td> + <td class="numeric"><?php echo $feed['count']?></td> + </tr> + <?php endforeach;?> + </tbody> + </table> + </div> </div> <script> |
