mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 16:52:16 +09:00
communication UI changed.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9218 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
173ddca03e
commit
da1ef5ac65
10 changed files with 432 additions and 530 deletions
|
|
@ -1,44 +1,30 @@
|
|||
<!--%import("js/communication.js")-->
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->cmd_send_message}</h3>
|
||||
</div>
|
||||
|
||||
<load target="js/communication.js" />
|
||||
<h1 class="h1">{$lang->cmd_send_message}</h1>
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
<form ruleset="sendMessage" action="./" method="get">
|
||||
<input type="hidden" name="act" value="procCommunicationSendMessage" />
|
||||
<input type="hidden" name="content" value="{htmlspecialchars($source_message->content)}" />
|
||||
<input type="hidden" name="receiver_srl" value="{$receiver_info->member_srl}" />
|
||||
|
||||
<div id="popBody">
|
||||
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<tr>
|
||||
<th><div><label for="textfield1">{$lang->receiver}</label></div></th>
|
||||
<td><div class="member_{$receiver_info->member_srl}">{$receiver_info->nick_name}</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><div>{$lang->title}</div></th>
|
||||
<td><input type="text" name="title" id="message_title" class="inputTypeText w300" value="{$source_message->title}"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><div>{$lang->cmd_option}</div></th>
|
||||
<td><input type="checkbox" value="Y" name="send_mail" /> {$lang->cmd_send_mail}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{$editor}
|
||||
|
||||
</div>
|
||||
|
||||
<div id="popFooter">
|
||||
<span class="button black strong"><input type="submit" value="{$lang->cmd_send_message}" class="editor_button" accesskey="s" /></span>
|
||||
</div>
|
||||
|
||||
<input type="hidden" name="act" value="procCommunicationSendMessage" />
|
||||
<input type="hidden" name="content" value="{htmlspecialchars($source_message->content)}" />
|
||||
<input type="hidden" name="receiver_srl" value="{$receiver_info->member_srl}" />
|
||||
<div class="table">
|
||||
<table width="100%" border="1" cellspacing="0" class="form">
|
||||
<tr>
|
||||
<th scope="row"><label for="textfield1">{$lang->receiver}</label></th>
|
||||
<td>{$receiver_info->nick_name}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->title}</th>
|
||||
<td><input type="text" name="title" id="message_title" value="{$source_message->title}"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->cmd_option}</th>
|
||||
<td><input type="checkbox" value="Y" name="send_mail" /> {$lang->cmd_send_mail}</td>
|
||||
</tr>
|
||||
</table>
|
||||
{$editor}
|
||||
</div>
|
||||
<div class="btnArea">
|
||||
<span class="btn"><input type="submit" value="{$lang->cmd_send_message}" /></span>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function$(){ $('#message_title').focus(); });
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue