8 lines
477 B
Plaintext
8 lines
477 B
Plaintext
|
<%= form_tag({:controller => 'words',
|
||
|
:action => 'create_reply'}) do %>
|
||
|
<%= text_area_tag 'project_respond', "", :class => 'noline', :required => true, :style => "resize: none;", :rows => 4, :placeholder => l(:label_projects_feedback_respond_content) %>
|
||
|
|
||
|
<%= hidden_field_tag 'reference_id', params[:reference_id], :value => journal.id %>
|
||
|
<%= submit_tag l(:button_projects_feedback_respond), :name => nil , :class => "bid_btn", :style => "margin-top: 1px;"%>
|
||
|
|
||
|
<% end %>
|