team_list_layout.php
1.2 KB
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
<table>
    <tr>
        <td class='team_header'><?= $group->name ?></td>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
        <td class="personal_photo"><img src="<?= $team->img ?>"></td>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
            <td class="personal_name"><?= $team->name ?></td>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
            <?php if( $team->email):?>
                <td class='team_contacts'><a href=""><img src="/images/envelope.png"><?= $team->email ?></a></td>
            <?php endif;?>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
            <?php if( $team->phone):?>
            <td  class='team_contacts'><a href=""><img src="/images/telephone_ico.png"><?= $team->phone ?></a></td>
            <?php endif;?>
        <?php endforeach; ?>
    </tr>
    <tr>
        <?php foreach($group->team as $team):?>
        <?php if( $team->skype):?>
        <td class='team_contacts'><a href=""><img src="/images/skype.png"><?= $team->skype ?></a></td>
            <?php endif;?>
        <?php endforeach; ?>
    </tr>
</table>