|
|
|
@ -60,7 +60,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<div id="comments" style="margin-bottom:16px;">
|
|
|
|
|
<div id="notificationcomments" style="margin-bottom:16px;">
|
|
|
|
|
|
|
|
|
|
<div style="margin:15px">
|
|
|
|
|
<span class="font_description"> <%= textilizable(@contestnotifications, :description) %> </span>
|
|
|
|
@ -68,13 +68,13 @@
|
|
|
|
|
<%= link_to_attachments @contestnotifications %>
|
|
|
|
|
<br/>
|
|
|
|
|
<!--add comment-->
|
|
|
|
|
<% if @contestnotifications.commentable? %>
|
|
|
|
|
<% if @contestnotifications.notificationcommentable? %>
|
|
|
|
|
<p>
|
|
|
|
|
<%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %>
|
|
|
|
|
<%= toggle_link l(:label_comment_add), "add_notificationcomment_form", :focus => "comment_comments" %>
|
|
|
|
|
</p>
|
|
|
|
|
<%= form_tag({:controller => 'comments', :action => 'create', :id => @contestnotifications}, :id => "add_comment_form", :style => "display:none;") do %>
|
|
|
|
|
<%= form_tag({:controller => 'notificationcomments', :action => 'create', :id => @contestnotifications}, :id => "add_notificationcomment_form", :style => "display:none;") do %>
|
|
|
|
|
<div class="box">
|
|
|
|
|
<%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
|
|
|
|
|
<%= text_area 'notificationcomment', 'notificationcomments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
|
|
|
|
|
<%= wikitoolbar_for 'comment_comments' %>
|
|
|
|
|
</div>
|
|
|
|
|
<p>
|
|
|
|
@ -92,33 +92,33 @@
|
|
|
|
|
<!--dispaly comments-->
|
|
|
|
|
<div class="line_heng"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<h3 class="comments"><%= l(:label_comment_plural) %></h3>
|
|
|
|
|
<% comments = @comments.reverse %>
|
|
|
|
|
<% comments.each do |comment| %>
|
|
|
|
|
<% next if comment.new_record? %>
|
|
|
|
|
<h3 class="notificationcomments"><%= l(:label_comment_plural) %></h3>
|
|
|
|
|
<% notificationcomments = @notificationcomments.reverse %>
|
|
|
|
|
<% notificationcomments.each do |notificationcomment| %>
|
|
|
|
|
<% next if notificationcomment.new_record? %>
|
|
|
|
|
<table width="660px" border="0" align="center">
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" valign="top" width="50" ><%= image_tag(url_to_avatar(comment.author), :class => "avatar")%></td>
|
|
|
|
|
<td colspan="2" valign="top" width="50" ><%= image_tag(url_to_avatar(notificationcomment.author), :class => "avatar")%></td>
|
|
|
|
|
<td>
|
|
|
|
|
<table width="580px" border="0">
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" valign="top"><strong><%= link_to_user(comment.author) if comment.respond_to?(:author) %> </strong><span class="font_lighter"><%= l(:label_project_newadd) %></span><%= l(:label_comment_plural) %></td>
|
|
|
|
|
<td colspan="2" valign="top"><strong><%= link_to_user(notificationcomment.author) if notificationcomment.respond_to?(:author) %> </strong><span class="font_lighter"><%= l(:label_project_newadd) %></span><%= l(:label_comment_plural) %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" width="580px" >
|
|
|
|
|
<p class="font_description">
|
|
|
|
|
<%= textilizable(comment.comments) %>
|
|
|
|
|
<%= textilizable(notificationcomment.notificationcomments) %>
|
|
|
|
|
</p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="left"><span class="font_lighter"> <%= format_time(comment.created_on) %></span></td>
|
|
|
|
|
<td width="200" align="right" class="a"><%= link_to_if_authorized image_tag('delete.png'), {:controller => 'comments', :action => 'destroy', :id => @contestnotifications, :comment_id => comment},
|
|
|
|
|
<td align="left"><span class="font_lighter"> <%= format_time(notificationcomment.created_at) %></span></td>
|
|
|
|
|
<td width="200" align="right" class="a"><%= link_to_if_authorized image_tag('delete.png'), {:controller => 'notificationcomments', :action => 'destroy', :id => @contestnotifications, :notificationcomment_id => notificationcomment},
|
|
|
|
|
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete, :title => l(:button_delete) %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<% end if @comments.any? %>
|
|
|
|
|
<% end if @notificationcomments.any? %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--end-->
|
|
|
|
|