<% if show_name %>
<%= link_to user, user_path(user),:style => " font-weight:bold; color:#15bccf; margin-right:5px; background:none;max-width: 40px;overflow: hidden;", :target => "_blank", title: user%>
<% else%>
<%= l(:label_anonymous) %>
<% end %>
<%= format_time(review.created_at) %>
<% if review.stars%>
<%= l(:label_work_rating) %>:
<%= render :partial => 'homework_attach/show_static_star', :locals => {:start_score => review.stars } %>
<% end %>
<% notes = textilizable(jour.nil? ? "" : jour.notes)%>
<%= notes.empty? ? "
".html_safe : notes%>
<% unless jour.nil? %>
<% unless jour.attachments.empty?%>
<%= render :partial => 'attachments/homework_jour_link',
:locals => {:attachments => jour.attachments} %>
<% end %>
<% ids = 'project_respond_form_'+ jour.id.to_s%>
<%= render :partial => 'words/new_respond', :locals => {:journal => jour, :m_reply_id => jour,:show_name=> show_name} %>
<%= render :partial => "words/journal_reply", :locals => {:journal => jour,:show_name=> show_name} %>
<% end %>