Blame view

frontend/views/road-service/view.php 3.66 KB
b41d5459   Yarik   first commit
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  <?php
  
      use yii\helpers\Html;
      use yii\widgets\DetailView;
  
      /* @var $this yii\web\View */
      /* @var $model common\models\RoadService */
  
      $this->title = $model->getTitle();
      $this->params[ 'breadcrumbs' ][] = [
          'label' => 'Обслуговування автодоріг',
          'url'   => [ 'index' ],
      ];
      $this->params[ 'breadcrumbs' ][] = $this->title;
  ?>
  <div class="road-service-view">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <p>
          <?= Html::a('Оновити', [
              'update',
              'id' => $model->road_service_id,
          ], [ 'class' => 'btn btn-primary' ]) ?>
          <?= Html::a('Видалити', [
              'delete',
              'id' => $model->road_service_id,
          ], [
              'class' => 'btn btn-danger',
              'data'  => [
                  'confirm' => 'Are you sure you want to delete this item?',
                  'method'  => 'post',
              ],
          ]) ?>
      </p>
  
      <div class="statement_block">
          <div class="col-xs-6 text-center">
              Міністерство інфраструктури України<br>
              ДЕРЖАВНЕ АГЕНСТВО<br>
              АВТОМОБІЛЬНИХ ДОГІР УКРАЇНИ
          </div>
          <div class="col-xs-6">
              Служба автомобільних доріг у <?php echo $model->region->name; ?> області
          </div>
          <div class="clearfix"></div>
          <div class="col-xs-12 text-center">
              <p class="h3">Відомість</p>
              <p><b>обслуговування автодоріг</b></p>
              <p>на автомобільній дорозі</p>
              <p>
                  <ins><?php echo $this->title; ?></ins>
              </p>
              <p>
                  <ins><?php echo $model->road->roadType->definition; ?></ins>
                  значення станом на
                  <ins><b><?php echo date('d F Y'); ?></b> р.</ins>
              </p>
          </div>
          <div class="clearfix"></div>
          <div class="col-xs-12">
              <table align="center" class="table-bordered text-center statement-table">
                  <tr>
                      <th colspan="2">Місцезнаходження, км+</th>
                      <th rowspan="2"><?php echo $model->getAttributeLabel('road_direction_id'); ?></th>
                      <th rowspan="2"><?php echo $model->getAttributeLabel('organization_id'); ?></th>
                      <th rowspan="2"><?php echo $model->getAttributeLabel('year_begin'); ?></th>
                  </tr>
                  <tr>
                      <th>Початок</th>
                      <th>кінець</th>
                  </tr>
                  <tr>
                      <th>1</th>
                      <th>2</th>
                      <th>3</th>
                      <th>4</th>
                      <th>5</th>
                  </tr>
                  <tr>
                      <td><?php echo $model->getBeginString(); ?></td>
                      <td><?php echo $model->getEndString(); ?></td>
                      <td><?php echo $model->roadDirection->direction_name; ?></td>
                      <td><?php echo $model->organization->name; ?></td>
                      <td><?php echo $model->year_begin; ?></td>
                  </tr>
              </table>
          </div>
          <div class="clearfix"></div>
          <div class="col-xs-6" style="word-wrap: break-word">
              Склав <?php echo str_repeat('_', 50); echo date('Y'); ?> р.
          </div>
          <div class="col-xs-6">
              Начальник <?php echo str_repeat('_', 50); echo date('Y'); ?> р.
          </div>
          <div class="clearfix"></div>
      </div>
  
  </div>