5-3-3
修改樣板讓前後臺連結都適用
您沒有觀看影片的權限
請先登入,登入後,確認您的權限後,即可觀看影片。
- 目前連結僅適用前台,在後台使用會無效,故需改為絕對位置
- 可以按 Ctrl+Shit+F,搜尋
href="index.php
取代為
href="<{$xoops_url}>/modules/tad_signup/index.php
即可
-
此外,為了讓管理員可以一眼就瞧出這個活動是否為關閉狀態,可以修改 templates\op_tad_signup_actions_index.tpl
樣板,加入相對應的符號
<table class="table table-bordered">
<!--略-->
<tbody>
<{foreach from=$all_data key=id item=action name=all_data}>
<tr>
<td>
<{if $action.enable && $action.number > $action.signup|@count && $xoops_isuser && $action.end_date|strtotime >= $smarty.now}>
<i class="fa fa-check text-success" aria-hidden="true"></i>
<{else}>
<i class="fa fa-times text-danger" aria-hidden="true"></i>
<{/if}>
<a href="<{$xoops_url}>/modules/tad_signup/index.php?id=<{$action.id}>"><{$action.title}></a>
</td>
<!--略-->
</tr>
<{/foreach}>
</tbody>
</table>
link to https://github.com/tadlearn/tad_signup/commit/84914da7429f2c49708d3feddf5c0c54f4c9312a \