index.phtml 900 B

12345678910111213141516171819202122232425
  1. <div id="history_content" class="ui-widget ui-widget-content block-shadow alpha-block padded">
  2. <?php echo $this->date_form; ?>
  3. <div id="his-tabs">
  4. <ul>
  5. <?php if ($this->userType != UTYPE_HOST): ?>
  6. <li><a href="#his-tabs-1"><?php echo _("Log Sheet"); ?></a></li>
  7. <li><a href="#his-tabs-2"><?php echo _("File Summary"); ?></a></li>
  8. <?php endif; ?>
  9. <li><a href="#his-tabs-3"><?php echo _("Show Summary"); ?></a></li>
  10. </ul>
  11. <?php if ($this->userType != UTYPE_HOST): ?>
  12. <div id="his-tabs-1">
  13. <table id="history_table_list" cellpadding="0" cellspacing="0" class="datatable"></table>
  14. </div>
  15. <div id="his-tabs-2">
  16. <table id="history_table_aggregate" cellpadding="0" cellspacing="0" class="datatable"></table>
  17. </div>
  18. <?php endif; ?>
  19. <div id="his-tabs-3">
  20. <div id="history_show_summary"></div>
  21. </div>
  22. </div>
  23. </div>