2014-04-03 22:38:18 +08:00
|
|
|
<!-- fq -->
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
function clearInfo(id, content) {
|
|
|
|
var text = $('#' + id);
|
|
|
|
if (text.val() == content) {
|
|
|
|
$('#' + id).val('');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showInfo(id, content) {
|
|
|
|
var text = $('#' + id);
|
|
|
|
if (text.val() == '') {
|
|
|
|
$('#' + id).val(content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<%= form_for('contest_message',
|
|
|
|
:remote => true, :method => :post,
|
|
|
|
:url => {:controller => 'contests',
|
|
|
|
:action => 'create',
|
|
|
|
:id => contest,
|
|
|
|
:sta => sta}
|
|
|
|
) do |f|%>
|
|
|
|
|
|
|
|
<div id = 'pre_show'> <!--what function?-->
|
|
|
|
<%= render :partial => 'pre_show', :locals => {:content => @content} %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if User.current.logged? %>
|
|
|
|
<table border="0" width="525px" align="center" >
|
|
|
|
<tr>
|
|
|
|
<td><%= f.text_area 'message', :rows => 3, :cols => 65, :placeholder => l(:label_my_respond), :style => "resize: none;", :class => 'noline'%></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<%= f.text_field :reference_user_id, :style=>"display:none"%> <!--what function?-->
|
|
|
|
|
|
|
|
<!-- modified by bai -->
|
|
|
|
<table border="0" width="525px" align="center">
|
|
|
|
<tr>
|
|
|
|
<td align="right"> <%= submit_tag l(:button_leave_meassge), :name => nil , :class => "contest_btn", :onmouseout => "this.style.backgroundPosition = 'left top'", :onmouseover => "this.style.backgroundPosition = 'left -31px'"%>
|
|
|
|
<%= submit_tag l(:button_clear), :name => nil, :onclick => "clearMessage('contest_message_message');", :type => 'button', :class => "bid_btn", :onmouseout => "this.style.backgroundPosition = 'left top'", :onmouseover => "this.style.backgroundPosition = 'left -31px'" %> </td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<!-- end -->
|
|
|
|
<% else %>
|
2014-05-24 09:30:23 +08:00
|
|
|
<div style="font-size: 14px;margin:10px;padding-left: 13px">
|
2014-04-03 22:38:18 +08:00
|
|
|
<%= l(:label_user_login_tips) %>
|
|
|
|
<%= link_to l(:label_user_login_new), signin_path %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|