list.php
1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
use frontend\models\IntellectualProperty;
use yii\helpers\Url;
use yii\web\View;
use yii\widgets\ActiveForm;
use yii\widgets\Pjax;
/**
* @var View $this
* @var IntellectualProperty[] $table
*/
?>
<div class="style cab_content_list">
<div class="cab_content_list-dropdown">
<div class="title_forms">Список ОІВ</div>
<div class="style table-forms-wrapp">
<?php
Pjax::begin([
'id' => 'int-property-table',
]);
?>
<table class="table-1 table-2" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="width: 213px;">Назва</td>
<td style="width: 108px;">Дата створення</td>
<td>Шифр</td>
<td>Жанр</td>
<td style="width: 107px;">Дата реєстрації</td>
<td>Договір</td>
<td>Тип</td>
<td class="refactor-td"></td>
</tr>
<?php
foreach ($table as $row) {
?>
<tr>
<td><?= $row->title ?></td>
<td><?= $row->creation_date ?></td>
<td><?= $row->code ?></td>
<td><?= $row->genre ?></td>
<td><?= $row->registration_date ?></td>
<td><?= $row->contract ?></td>
<td><?= $row->type ?></td>
<td><a href="<?php echo Url::to(
[
'sales',
'id' => $row->id,
]
) ?>" class="edit-table"></a><a href="#" class="remove-table remove-int-prop" data-id="<?=$row->id?>"></a></td>
</tr>
<?php
}
?>
</table>
<?php
Pjax::end();
?>
</div>
</div>
</div>