mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13161 201d5d3c-b55e-5fd7-737f-ddc643e51545
38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<h1 class="h1">{$lang->cmd_send_trackback}</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/trackback/tpl/send_trackback_form/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="sendTrackback" action="./" method="post">
|
|
<input type="hidden" name="module" value="trackback" />
|
|
<input type="hidden" name="act" value="procTrackbackSend" />
|
|
<input type="hidden" name="target_srl" value="{$oDocument->document_srl}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/trackback/tpl/send_trackback_form/1" />
|
|
<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">
|
|
<input class="btn" type="submit" value="{$lang->cmd_send_trackback}" />
|
|
</div>
|
|
</form>
|