Blame view

common/mail/feedback.php 734 Bytes
a0e8d4e0   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
  <?php
      use artbox\core\models\Feedback;
      use yii\web\View;
      
      /**
       * @var View     $this
       * @var Feedback $model
       */
  
  ?>
  
  <table>
    <tbody>
      <tr>
        <td><b><?= \Yii::t('app', 'Name: ') ?></b></td>
        <td><?= $model->name ?></td>
      </tr>
      <tr>
        <td><b><?= \Yii::t('app', 'Phone: ') ?></b></td>
        <td><?= $model->phone ?></td>
      </tr>
      <tr>
        <td><b><?= \Yii::t('app', 'Email: ') ?></b></td>
        <td><?= $model->email ?></td>
      </tr>
      <tr>
        <td><b><?= \Yii::t('app', 'Message: ') ?></b></td>
        <td><?= $model->message ?></td>
      </tr>
735ae87f   Timur Kastemirov   sending email
30
31
32
33
        <tr>
        <td><b><?= \Yii::t('app', 'Url: ') ?></b></td>
        <td><?= $model->url ?></td>
      </tr>
a0e8d4e0   Alexey Boroda   first commit
34
35
    </tbody>
  </table>