%= form_for('softapplication_message',
:remote => true, :method => :post,
:url => {:controller => 'softapplications',
:action => 'create_message',
:id => softapplication,
:sta => sta}
) do |f|%>
<%= render :partial => 'pre_show', :locals => {:content => @content} %>
<% if User.current.logged? %>
<% unless User.current.id == @softapplication.user_id %>
<%= f.text_area 'message', :rows => 3, :cols => 65, :placeholder => l(:label_my_respond), :style => "resize: none;", :class => 'noline'%> |
<%= f.text_field :reference_user_id, :style=>"display:none"%>
<%= submit_tag l(:label_button_ok), :name => nil , :class => "softapplication_btn", :onmouseout => "this.style.backgroundPosition = 'left top'", :onmouseover => "this.style.backgroundPosition = 'left -31px'"%>
<%= submit_tag l(:button_clear_requirement), :name => nil, :onclick => "clearMessage('softapplication_message_message');", :type => 'button', :class => "bid_btn", :onmouseout => "this.style.backgroundPosition = 'left top'", :onmouseover => "this.style.backgroundPosition = 'left -31px'" %> |
<% end %>
<% else %>
<%= l(:label_user_login_score_and_comment) %>
<%= link_to l(:label_user_login_new), signin_path %>
<% end %>
<% end %>