mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
63 lines
2.4 KiB
HTML
63 lines
2.4 KiB
HTML
<include target="../../../member/skins/default/common_header.html" />
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/ncenterlite/skins/default/unsubscribe/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<table class="table table-striped table-hover" style="margin-top:20px;">
|
|
<thead class="bg_f_f9">
|
|
<tr>
|
|
<th scope="col">타입</th>
|
|
<th scope="col">콘텐츠</th>
|
|
<th scope="col">차단설정</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($unsubscribe_list as $no => $val)-->
|
|
<tr>
|
|
<td>
|
|
<!--@if($val->unsubscribe_type == 'document')-->
|
|
<span>문서</span>
|
|
<!--@else-->
|
|
<span>댓글</span>
|
|
<!--@end-->
|
|
</td>
|
|
<td>
|
|
<!--@if($val->unsubscribe_type == 'document')-->
|
|
<a href="{getUrl('', 'document_srl', $val->target_srl)}">{$val->text}</a>
|
|
<!--@else-->
|
|
<a href="{getUrl('', 'document_srl', $val->document_srl)}#{$val->target_srl}">{$val->text}</a>
|
|
<!--@end-->
|
|
</td>
|
|
<td>
|
|
<form action="./" method="post">
|
|
<fieldset>
|
|
<input type="hidden" name="module" value="ncenterlite" />
|
|
<input type="hidden" name="act" value="procNcenterliteInsertUnsubscribe" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/ncenterlite/skins/default/unsubscribe/1" />
|
|
<input type="hidden" name="target_srl" value="{$val->target_srl}" />
|
|
<input type="hidden" name="unsubscribe_type" value="{$val->unsubscribe_type}" />
|
|
<input type="hidden" name="unsubscribe_srl" value="{$val->unsubscribe_srl}" />
|
|
<select name="value" style="width:175px;">
|
|
<option value="Y">{$lang->ncenterlite_to_unsubscribe}</option>
|
|
<option value="N">{$lang->ncenterlite_subscribe}</option>
|
|
</select>
|
|
<button type="submit" class="x_btn">{$lang->cmd_setup}</button>
|
|
</fieldset>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
<!--@endforeach-->
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="pagination pagination-centered">
|
|
<ul>
|
|
<li><a href="{getUrl('page','')}" class="direction">« {$lang->first_page}</a></li>
|
|
<!--@if($page_navigation)-->
|
|
<!--@while($page_no = $page_navigation->getNextPage())-->
|
|
<li class="active"|cond="$page == $page_no"><a href="{getUrl('page',$page_no)}">{$page_no}</a></li>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
<li><a href="{getUrl('page',$page_navigation->last_page)}" class="direction">{$lang->last_page} »</a></li>
|
|
</ul>
|
|
</div>
|
|
<include target="../../../member/skins/default/common_footer.html" />
|