|
|
@@ -48,6 +48,7 @@
|
|
|
<th><?php echo _t ('feed'); ?></th>
|
|
|
<th><?php echo _t ('category'); ?></th>
|
|
|
<th><?php echo _t ('stats_entry_count'); ?></th>
|
|
|
+ <th><?php echo _t ('stats_percent_of_total'); ?></th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -56,6 +57,7 @@
|
|
|
<td><a href="<?php echo _url('stats', 'repartition', 'id', $feed['id']); ?>"><?php echo $feed['name']; ?></a></td>
|
|
|
<td><?php echo $feed['category']; ?></td>
|
|
|
<td class="numeric"><?php echo formatNumber($feed['count']); ?></td>
|
|
|
+ <td class="numeric"><?php echo formatNumber($feed['count'] / $this->repartition['all_feeds']['total'] * 100, 1);?></td>
|
|
|
</tr>
|
|
|
<?php endforeach;?>
|
|
|
</tbody>
|