<%= l(:label_user_response) %>
<%= form_for('new_form', :method => :post,
:url => {:controller => 'words', :action => 'leave_project_message'}) do |f|%>
<%= f.text_area 'project_message', :rows => 3, :cols => 65,
:placeholder => "#{l(:label_welcome_my_respond)}",
:style => "resize: none; width: 98%",
:class => 'noline'%>
<%= submit_tag l(:button_leave_meassge), :name => nil , :class => "enterprise" , :style => "display: block; float: right; margin-right: 1%; margin-top: 1px;"%>
<% end %>
<% if @jour.size >0 %>
<% for journal in @jour%>
-
<%= image_tag(url_to_avatar(journal.user), :class => "avatar") %>
<%= link_to journal.user, user_path(journal.user)%>
<%= l(:label_projects_feedback) %>
<%= textilizable journal.notes%>
<%= l :label_update_time %>: <%= format_time journal.created_on %>
<% id = 'project_respond_form_'+journal.id.to_s%>
<%= link_to l(:label_projects_feedback_respond),'',
{:focus => 'project_respond',
:onclick => "toggleAndSettingWordsVal($('##{id}'),
$('##{id} textarea'),
'#{l(:label_reply_plural)} #{journal.user.show_name}: ');
return false;"} %>
<%= render :partial => 'new_respond', :locals => {:journal => journal, :m_reply_id => journal} %>
<%= render :partial => "words/journal_reply", :locals => {:journal => journal } %>
<% end %>
<% end %>