rhymix/modules/wiki/skins/xe_wiki/comment_form.html
zero fd8f090c6b 위키 기본 스킨 CSS 변경
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6556 201d5d3c-b55e-5fd7-737f-ddc643e51545
2009-06-16 07:41:33 +00:00

61 lines
2.3 KiB
HTML

<!--#include("header.html")-->
<!--@if($oSourceComment->isExists())-->
<div class="feedbackList">
<div class="item itemOnly">
<div class="itemAside">
<h4 class="header"><a href="#popup_menu_area" class="member_{$oSourceComment->getMemberSrl()}" onclick="return false">{$oSourceComment->getNickName()}</a></h4>
<p class="meta">
{$oSourceComment->getRegdate("Y.m.d H:i")}
<!--@if($grant->manager)-->
<br />{$oSourceComment->get('ipaddress')}
<!--@end-->
</p>
</div>
<div class="itemContent">
{$oSourceComment->getContent(false)}
</div>
</div>
</div>
<!--@end-->
<form action="./" method="post" onsubmit="return procFilter(this, insert_comment)" class="wikiEditor" >
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="document_srl" value="{$oComment->get('document_srl')}" />
<input type="hidden" name="comment_srl" value="{$oComment->get('comment_srl')}" />
<input type="hidden" name="content" value="{htmlspecialchars($oComment->get('content'))}" />
<input type="hidden" name="parent_srl" value="{$oComment->get('parent_srl')}" />
<div class="wikiWrite commentEditor">
<div class="editor">{$oComment->getEditor()}</div>
<div class="editorOption">
<!--@if(!$is_logged)-->
<input type="text" name="nick_name" class="inputText userName" value="{$lang->writer}" onfocus="this.value=''" />
<input type="password" name="password" class="inputText userPw" value="{$lang->password}" onfocus="this.value=''" />
<input type="text" name="email_address" class="inputText emailAddress" value="{$lang->email_address}" onfocus="this.value=''" />
<input type="text" name="homepage" class="inputText homePage" value="{$lang->homepage}" onfocus="this.value=''" />
<!--@end-->
<!--@if($is_logged)-->
<input type="checkbox" name="notify_message" value="Y" id="notify_message" class="inputCheck" />
<label for="notify_message">{$lang->notify}</label>
<!--@end-->
<input type="checkbox" name="is_secret" value="Y" id="is_secret" class="inputCheck" />
<label for="is_secret">{$lang->secret}</label>
</div>
<div class="wikiNavigation">
<span class="buttonOfficial"><input type="submit" value="{$lang->cmd_comment_registration}" accesskey="s" /></span>
</div>
</div>
</form>
<!--#include("footer.html")-->