Commit 896796a5 by Phạm Văn Đoan

thêm icon cho tiêu đề BXH ngày

parent 6e733a19
...@@ -3,21 +3,29 @@ ...@@ -3,21 +3,29 @@
<thead> <thead>
<tr> <tr>
<th style="text-align: center">TT</th> <th style="text-align: center">TT</th>
<th style="text-align: center">#ID</th> <!--<th style="text-align: center">#ID</th>-->
<th style="text-align: center">Ảnh</th> <th style="text-align: center">Ảnh</th>
<th style="text-align: center">Tên bài hát</th> <th style="text-align: center"><i class="fa fa-music color-red"></i> Tên bài hát</th>
<th style="text-align: center">Ca sĩ</th> <th style="text-align: center"><i class="fa fa-microphone color-red"></i> Ca sĩ</th>
<th style="text-align: center">Tổng điểm</th> <th style="text-align: center"><i class="fa fa-headphones color-red"></i> Zing</th>
<th style="text-align: center"><i class="fa fa-headphones color-red"></i> NCT</th>
<th style="text-align: center"><i class="fa fa-headphones color-red"></i> Keeng</th>
<th style="text-align: center"><i class="fa fa-headphones color-red"></i> Tổng lượt nghe</th>
<th style="text-align: center"><i class="fa fa-edit color-red"></i> Tổng điểm</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<?php if(count($listData) > 0): foreach($listData as $key => $data): ?> <?php if(count($listData) > 0): foreach($listData as $key => $data): ?>
<tr> <tr>
<td style="text-align: center"><?php echo ($key+1+$offset); ?></td> <td style="text-align: center"><?php echo ($key+1+$offset); ?></td>
<td style="text-align: center">#<?php echo $data['track_id']; ?></td> <!--<td style="text-align: center">#<?php /*echo $data['track_id']; */?></td>-->
<td style="text-align: center"><img src="<?php echo base_url($data['art']); ?>"></td> <td style="text-align: center"><img src="<?php echo base_url($data['art']); ?>"></td>
<td style="text-align: left"><?php echo $data['name_song']; ?></td> <td style="text-align: left"><?php echo $data['name_song']; ?></td>
<td style="text-align: left"><?php echo $data['all_name']; ?></td> <td style="text-align: left"><?php echo $data['all_name']; ?></td>
<td style="text-align: right"><?php echo number_format($data['views_zing'], 0, ',', '.'); ?></td>
<td style="text-align: right"><?php echo number_format($data['views_nct'], 0, ',', '.'); ?></td>
<td style="text-align: right"><?php echo number_format($data['views_keeng'], 0, ',', '.'); ?></td>
<td style="text-align: right"><?php echo number_format(($data['views_zing'] + $data['views_nct'] + $data['views_keeng']), 0, ',', '.'); ?></td>
<td style="text-align: right"><?php echo number_format($data['total_point'], 0, ',', '.'); ?></td> <td style="text-align: right"><?php echo number_format($data['total_point'], 0, ',', '.'); ?></td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment