aside_stats.phtml 724 B

123456789101112
  1. <ul class="nav nav-list aside">
  2. <li class="nav-header"><?php echo Minz_Translate::t ('stats'); ?></li>
  3. <li class="item<?php echo Minz_Request::actionName () == 'index' ? ' active' : ''; ?>">
  4. <a href="<?php echo _url ('stats', 'index'); ?>"><?php echo Minz_Translate::t ('stats_main'); ?></a>
  5. </li>
  6. <li class="item<?php echo Minz_Request::actionName () == 'idle' ? ' active' : ''; ?>">
  7. <a href="<?php echo _url ('stats', 'idle'); ?>"><?php echo Minz_Translate::t ('stats_idle'); ?></a>
  8. </li>
  9. <li class="item<?php echo Minz_Request::actionName () == 'repartition' ? ' active' : ''; ?>">
  10. <a href="<?php echo _url ('stats', 'repartition'); ?>"><?php echo Minz_Translate::t ('stats_repartition'); ?></a>
  11. </li>
  12. </ul>