Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/account/order_show.php |
<?php if (isset($message)):?>
<div id="message-red" >
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="red-left">
<?php echo $message;?>
</td>
<td class="red-right"><a class="close-red"><?php echo HTML::image('static/images/table/icon_close_red.gif');?></a></td>
</tr>
</table>
</div>
<?php endif;?>
<?php echo Message::render(); ?>
<div class="container">
<?php echo aurora::partial('frontend_sider'); ?>
<div id="content">
<h2><?php echo $order_item->item->title; ?></h2>
<p><?php echo $order_item->item->description; ?></p>
<h2>Watch online</h2>
<?php if( $order_item->item->item_type_link->item_type->id == 1 ) : ?>
<video width="100%" height="340" controls>
<source src="<?php echo $order_item->item->file; ?>" type="video/mp4">
<source src="<?php echo $order_item->item->file; ?>" type="video/ogg">
Your browser does not support the video tag.
</video>
<?php elseif( $order_item->item->item_type_link->item_type->id == 2 ) : ?>
<audio controls>
<source src="<?php echo $order_item->item->file; ?>" type="audio/ogg"> <!-- OGG //-->
<source src="<?php echo $order_item->item->file; ?>" type="audio/mpeg"> <!-- Mp3 //-->
Your browser does not support the audio element.
</audio>
<?php endif; ?>
</div>
</div>