sintonia/legacy/application/views/scripts/playouthistory/index.phtml

27 lines
928 B
PHTML
Raw Normal View History

2015-08-19 20:59:33 +02:00
<div id="history_content" class=" alpha-block padded">
2022-08-10 13:38:19 +02:00
<h2><?php echo (_("Playout History")); ?></h2>
2013-07-18 07:31:20 +02:00
<?php echo $this->date_form; ?>
<div id="his-tabs">
<ul>
2022-08-10 13:38:19 +02:00
<?php if ($this->userType != UTYPE_HOST) : ?>
<li><a href="#his-tabs-1"><?php echo _("Log Sheet"); ?></a></li>
<li><a href="#his-tabs-2"><?php echo _("File Summary"); ?></a></li>
<?php endif; ?>
<li><a href="#his-tabs-3"><?php echo _("Show Summary"); ?></a></li>
2013-07-18 07:31:20 +02:00
</ul>
2022-08-10 13:38:19 +02:00
<?php if ($this->userType != UTYPE_HOST) : ?>
<div id="his-tabs-1">
<table id="history_table_list" cellpadding="0" cellspacing="0" class="datatable"></table>
</div>
<div id="his-tabs-2">
<table id="history_table_aggregate" cellpadding="0" cellspacing="0" class="datatable"></table>
</div>
<?php endif; ?>
<div id="his-tabs-3">
<div id="history_show_summary"></div>
</div>
2013-07-18 07:31:20 +02:00
</div>
2021-10-12 11:17:57 +02:00
</div>