socialforge/app/views/bids/_new.html.erb

56 lines
1.8 KiB
Plaintext
Raw Normal View History

2013-08-04 10:59:25 +08:00
<!-- fq -->
<script type="text/javascript" language="javascript">
2013-08-09 16:26:26 +08:00
function clearInfo(id, content) {
var text = $('#' + id);
if (text.val() == content) {
$('#' + id).val('');
}
}
2013-08-09 16:26:26 +08:00
function showInfo(id, content) {
var text = $('#' + id);
if (text.val() == '') {
$('#' + id).val(content);
}
}
</script>
2013-08-09 16:26:26 +08:00
<%= form_for('bid_message', :remote => true, :method => :post,
:url => {:controller => 'bids',
:action => 'create',
:id => bid,
:sta => sta}) do |f|%>
2013-08-15 09:54:08 +08:00
<div id = 'pre_show'>
<%= render :partial => 'pre_show', :locals => {:content => @content} %>
</div>
2013-08-09 16:26:26 +08:00
<% if User.current.logged? %>
2013-08-06 21:43:06 +08:00
<table border="0" width="525px" align="center" >
<tr>
2013-09-16 08:49:39 +08:00
<% if @bid.reward_type ==3 %>
<td><%= f.text_area 'message', :rows => 3, :cols => 65, :placeholder => l(:label_my_question), :style => "resize: none;", :class => 'noline'%></td>
<% else %>
<td><%= f.text_area 'message', :rows => 3, :cols => 65, :placeholder => l(:label_my_respond), :style => "resize: none;", :class => 'noline'%></td>
<% end %>
2013-08-09 16:26:26 +08:00
</tr>
</table>
2013-08-09 16:26:26 +08:00
<%= f.text_field :reference_user_id, :style=>"display:none"%>
<!-- modified by bai -->
2013-08-09 16:26:26 +08:00
<table border="0" width="525px" align="center">
<tr>
<td align="right"> <%= submit_tag l(:button_leave_meassge), :name => nil , :class => "bid_btn", :onmouseout => "this.style.backgroundPosition = 'left top'", :onmouseover => "this.style.backgroundPosition = 'left -31px'"%>
<%= submit_tag l(:button_clear), :name => nil, :onclick => "clearMessage('bid_message_message');", :type => 'button', :class => "bid_btn", :onmouseout => "this.style.backgroundPosition = 'left top'", :onmouseover => "this.style.backgroundPosition = 'left -31px'" %> </td>
2013-08-09 16:26:26 +08:00
</tr>
</table>
<!-- end -->
2013-08-09 16:26:26 +08:00
<% else %>
<div style="font-size: 14px;margin:10px;">
<%= l(:label_user_login_tips) %>
<%= link_to l(:label_user_login_new), signin_path %>
</div>
<% end %>
2013-08-01 10:33:49 +08:00
<% end %>