Blame view

backend/views/parser/error.php 380 Bytes
f0dbd829   Mihail   add PriceWriter a...
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
  <?php
  
  /* @var $this yii\web\View */
  /* @var $name string */
  /* @var $message string */
  /* @var $exception Exception */
  
  use yii\helpers\Html;
  
  $this->title = $name;
  ?>
  <div class="site-error">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <div class="alert alert-danger">
          <?= nl2br(Html::encode($message)) ?>
      </div>
  
      <p>
  
      </p>
      <p>
      </p>
  
  </div>