dce46e80
Alex Savenko
first push project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<h2 class="content-header">
<?= $t->_(isset(explode('/', $this->router->getRewriteUri())[2])? explode('/', $this->router->getRewriteUri())[2] : 'main') ?>
</h2>
<section style="overflow: visible" class="content">
<?php if(!empty($orders)): ?>
<table border="0" cellpadding="0" cellspacing="0" id="history_zakaz">
<tr>
<td width="150"><?= $t->_('order_number') ?></td>
<td id="greytd" align="center"><?= $t->_('status') ?></td>
<td align="center" id="right_border"><?= $t->_('date') ?></td>
<td align="center"><?= $t->_('sum') ?></td>
<td id="greytd" width="40"></td>
</tr>
<?php foreach($orders as $o): ?>
<tr>
|