rhymix/modules/board/tpl/board_delete.html
conory b1cb1f3f34 다른 프레임워크와 css 충돌을 피하기 위해 rhymix.less의 class/id 이름에 prefix 처리
변경전의 xe.less 파일도 rhymix.less와 함께 load 하여 호환정 유지

CSS 충돌 예)
bootstrap의 .btn
사용 예)
bootstrap 사용시엔 {Context::unloadBasicFiles('xe')}으로 unload 시키면 문제없음
2018-08-03 19:45:30 +09:00

20 lines
861 B
HTML

<load target="filter/delete_board.xml" />
<load target="js/board_admin.js" />
<include target="header.html" />
<form action="./" method="get" onsubmit="return procFilter(this, delete_board)" class="section">
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
<h1>{$lang->confirm_delete}</h1>
<dl class="x_dl-horizontal">
<dt>{$lang->module_name}</dt>
<dd>{$module_info->mid}</dd>
<dt>{$lang->module}</dt>
<dd>{$module_info->module}</dd>
<dt>{$lang->document_count}</dt>
<dd>{$module_info->document_count}</dd>
</dl>
<div class="rhymix_button_wrapper">
<a href="{getUrl('act','dispBoardAdminContent')}" class="x_btn x_pull-left">{$lang->cmd_back}</a>
<span><input class="x_btn x_btn-danger" type="submit" value="{$lang->cmd_delete}" /></span>
</div>
</form>