Blame view

frontend/mail/views/callback/index.php 1.01 KB
d1f8bd40   Alexey Boroda   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
  <?php
  use yii\helpers\Html;
  use frontend\themes\threproject\assets\AppAsset;
  
  /**
   *
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   *
   * @var $callback \frontend\modules\form\modules\callback\models\Callback
   * @var $params \thread\modules\sys\modules\configs\components\ConfigsParams
   */
  $asset = AppAsset::register($this);
  $params = Yii::$app->param;
  ?>
  <!-- page-title start -->
  <!-- ================ -->
  <h1 class="page-title">
      <?= Yii::t('feedback', 'Feedback') ?>
  </h1>
  <!-- page-title end -->
  <table border="0" cellpadding="3" cellspacing="0" width="100%" style="padding: 0 5px;">
      <tr>
          <td>
              <?= $callback->getAttributeLabel('user_name') ?>
          </td>
          <td style="text-align: right;">
              <?= $callback['user_name'] ?>
          </td>
      </tr>
      <tr>
          <td>
              <?= $callback->getAttributeLabel('phone') ?>
          </td>
          <td style="text-align: right;">
              <?= $callback['phone'] ?>
          </td>
      </tr>
  </table>
  <hr>