임관 권유 메시지를 템플릿으로 이동

This commit is contained in:
2018-06-24 04:12:19 +09:00
parent 5ca8a6ecfa
commit 8a56393159
6 changed files with 39 additions and 52 deletions
+18
View File
@@ -0,0 +1,18 @@
<table class="tb_layout bg0" style="margin:auto;">
<thead>
<tr><td colspan="2" style="text-align:center;" class="bg1">임관 권유 메시지</td></tr>
</thead>
<tbody>
<?php foreach($nationList as $nation): ?>
<tr
data-nation-id="<?=$nation['nation']?>"
style="color:<?=$nation['textColor']?>;background-color:<?=$nation['color']?>;"
>
<td style="width:130px;text-align:center;"
><?=$nation['name']?></td>
<td style="width:870px;max-width:870px;max-height:200px;overflow:hidden;"
><?=$nation['scoutmsg']?:'-'?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>