Blame view

frontend/views/site/index.php 899 Bytes
54f2fc2b   Alexey Boroda   first commit
1
  <?php
fc4126a3   Alexey Boroda   -Some chages
2
3
4
5
6
7
8
      
      /**
       * @var                       $this yii\web\View
       * @var \common\models\Call[] $calls
       */
      
      $this->title = 'My Yii Application';
54f2fc2b   Alexey Boroda   first commit
9
10
  ?>
  <div class="site-index">
fc4126a3   Alexey Boroda   -Some chages
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
    
    <div class="jumbotron">
    
    </div>
    
    <div class="body-content">
      
      <div class="row">
        <table class="bordered">
          <thead>
            <tr>
              <th>Company</th>
              <th>Status</th>
              <th>Duration</th>
            </tr>
          </thead>
          <tbody>
              <?php
                  foreach ($calls as $call) {
                      ?>
                    <tr>
                      <td><?= $call->company ?></td>
                      <td><?= $call->status ?></td>
                      <td><?= $call->duration ?></td>
                    </tr>
                      <?php
                  }
              ?>
          </tbody>
        </table>
54f2fc2b   Alexey Boroda   first commit
41
      </div>
fc4126a3   Alexey Boroda   -Some chages
42
43
    
    </div>
54f2fc2b   Alexey Boroda   first commit
44
  </div>