Blame view

backend/views/parser/error.php 617 Bytes
f0dbd829   Mihail   add PriceWriter a...
1
2
3
4
5
6
7
8
9
  <?php
  
  /* @var $this yii\web\View */
  /* @var $name string */
  /* @var $message string */
  /* @var $exception Exception */
  
  use yii\helpers\Html;
  
25473a0d   Mihail   add parser trait ...
10
  $this->title = 'Ошибка';
f0dbd829   Mihail   add PriceWriter a...
11
12
13
14
15
16
  ?>
  <div class="site-error">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <div class="alert alert-danger">
25473a0d   Mihail   add parser trait ...
17
18
19
20
21
22
23
24
          <?php
          echo nl2br(Html::encode($message));
          if ( $action_name ) {
              echo "<br/>";
              echo "<br/>";
              echo Html::a('Вернуться', $action_name, ['class' => 'btn btn-info', 'name' => 'Return',]);
          }
          ?>
f0dbd829   Mihail   add PriceWriter a...
25
26
27
28
29
30
31
32
33
      </div>
  
      <p>
  
      </p>
      <p>
      </p>
  
  </div>