4-4-3
讓報名者可以觀看自己的紀錄
您沒有觀看影片的權限
請先登入,登入後,確認您的權限後,即可觀看影片。
- 編輯
templates\op_tad_signup_actions_show.tpl
,判斷身份後加入連結:
<table class="table" data-toggle="table" data-pagination="true" data-search="true" data-mobile-responsive="true">
<!--略-->
<tbody>
<{foreach from=$signup item=signup_data}>
<tr>
<{foreach from=$signup_data.tdc key=col_name item=user_data}>
<td>
<{foreach from=$user_data item=data}>
<{if $smarty.session.tad_signup_adm || $signup_data.uid == $uid}>
<div><a href="index.php?op=tad_signup_data_show&id=<{$signup_data.id}>"><{$data}></a></div>
<{else}>
<!--略-->
<{/if}>
<{/foreach}>
</td>
<{/foreach}>
<td><{$signup_data.signup_date}></td>
</tr>
<{/foreach}>
</tbody>
</table>
link to https://github.com/tadlearn/tad_signup/commit/4700930e601deb9075e072bff2b4edf4ab30ef81 \