Minor fix. class="table" replace with class="x_table x_table-striped x_table-hover"

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11754 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-10-17 05:25:41 +00:00
parent cca3ea0668
commit 9e0fe3ba98
67 changed files with 2625 additions and 2778 deletions

View file

@ -6,33 +6,31 @@
<input type="hidden" name="module" value="trackback" />
<input type="hidden" name="act" value="procTrackbackSend" />
<input type="hidden" name="target_srl" value="{$oDocument->document_srl}" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row"><label>{$lang->title}</label></th>
<td>{$oDocument->getTitleText()}</td>
</tr>
<tr>
<th scope="row"><label>{$lang->content}</label></th>
<td>{$oDocument->getSummary()}</td>
</tr>
<tr>
<th scope="row"><label for="textfield1">{$lang->send_trackback_url}</label></th>
<td>
<input type="text" id="textfield1" name="trackback_url" value="" />
<select name="charset">
<option value='UTF-8'>UTF-8</option>
<option value='EUC-KR'>EUC-KR</option>
<option value='EUC-JP'>EUC-JP</option>
<option value='SHIFT_JIS'>SHIFT_JIS</option>
<option value='EUC-CN'>EUC-CN</option>
<option value='HZ'>HZ</option>
<option value='BIG5'>BIG5</option>
</select>
</td>
</tr>
</table>
</div>
<table class="x_table x_table-striped x_table-hover">
<tr>
<th scope="row"><label>{$lang->title}</label></th>
<td>{$oDocument->getTitleText()}</td>
</tr>
<tr>
<th scope="row"><label>{$lang->content}</label></th>
<td>{$oDocument->getSummary()}</td>
</tr>
<tr>
<th scope="row"><label for="textfield1">{$lang->send_trackback_url}</label></th>
<td>
<input type="text" id="textfield1" name="trackback_url" value="" />
<select name="charset">
<option value='UTF-8'>UTF-8</option>
<option value='EUC-KR'>EUC-KR</option>
<option value='EUC-JP'>EUC-JP</option>
<option value='SHIFT_JIS'>SHIFT_JIS</option>
<option value='EUC-CN'>EUC-CN</option>
<option value='HZ'>HZ</option>
<option value='BIG5'>BIG5</option>
</select>
</td>
</tr>
</table>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_send_trackback}" /></span>
</div>

View file

@ -5,14 +5,12 @@
<input type="hidden" name="target_module_srl" value="{$trackback_config->module_srl?$trackback_config->module_srl:$module_srls}" />
<h3 class="h3">{$lang->trackback}</h3>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row"><label for="enable_trackback">{$lang->enable_trackback}</label></th>
<td class="text"><input type="checkbox" name="enable_trackback" id="enable_trackback" value="Y" <!--@if($trackback_config->enable_trackback == "Y")-->checked="checked"<!--@end--> /></td>
</tr>
</table>
</div>
<table class="x_table x_table-striped x_table-hover">
<tr>
<th scope="row"><label for="enable_trackback">{$lang->enable_trackback}</label></th>
<td class="text"><input type="checkbox" name="enable_trackback" id="enable_trackback" value="Y" <!--@if($trackback_config->enable_trackback == "Y")-->checked="checked"<!--@end--> /></td>
</tr>
</table>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
</div>