2014-05-30 20:52:55 +08:00
|
|
|
<!-- <p id="notice"><%= notice %></p>
|
2014-05-30 20:32:37 +08:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Contest:</b>
|
|
|
|
<%= @contestnotification.contest_id %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Title:</b>
|
|
|
|
<%= @contestnotification.title %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Summary:</b>
|
|
|
|
<%= @contestnotification.summary %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Description:</b>
|
|
|
|
<%= @contestnotification.description %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Author:</b>
|
|
|
|
<%= @contestnotification.author_id %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Comments count:</b>
|
|
|
|
<%= @contestnotification.comments_count %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<%= link_to 'Edit', edit_contestnotification_path(@contestnotification) %> |
|
2014-05-30 20:52:55 +08:00
|
|
|
<%= link_to 'Back', contestnotifications_path %> -->
|
|
|
|
|
|
|
|
<!--begin-->
|
|
|
|
<div class="contextual">
|
2014-06-03 09:27:07 +08:00
|
|
|
<%= watcher_link(@contestnotifications, User.current) %>
|
2014-05-30 20:52:55 +08:00
|
|
|
<%= link_to(l(:button_edit),
|
|
|
|
edit_news_path(@news),
|
|
|
|
:class => 'icon icon-edit',
|
|
|
|
:accesskey => accesskey(:edit),
|
|
|
|
:onclick => '$("#edit-news").show(); return false;') if User.current.allowed_to?(:manage_contestnotification, @contest) %>
|
2014-06-03 09:27:07 +08:00
|
|
|
<%= delete_link news_path(@contestnotifications) if User.current.allowed_to?(:manage_contestnotification, @contest) %>
|
2014-05-30 20:52:55 +08:00
|
|
|
</div>
|
|
|
|
|
2014-06-03 09:27:07 +08:00
|
|
|
<h3><strong><%=h @contestnotifications.title %></strong></h3>
|
2014-05-30 20:52:55 +08:00
|
|
|
|
2014-06-03 09:27:07 +08:00
|
|
|
<% if authorize_for('contestnotifications', 'edit') %>
|
2014-05-30 20:52:55 +08:00
|
|
|
<div id="edit-news" style="display:none;">
|
2014-06-03 09:27:07 +08:00
|
|
|
<%= labelled_form_for :contestnotifications, @contestnotifications, :url => contestnotifications_path(@contestnotifications),
|
2014-05-30 20:52:55 +08:00
|
|
|
:html => { :id => 'news-form', :multipart => true, :method => :put } do |f| %>
|
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
|
|
<%= submit_tag l(:button_save) %>
|
2014-06-03 09:27:07 +08:00
|
|
|
<%= preview_link preview_contestnotifications_path(:contest_id => @contest, :id => @contestnotifications), 'news-form',target='preview',{:class => ''} %> |
|
2014-05-30 20:52:55 +08:00
|
|
|
<%= link_to l(:button_cancel), "#", :onclick => '$("#edit-news").hide(); return false;' %>
|
|
|
|
<% end %>
|
|
|
|
<div id="preview" class="wiki"></div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div id="comments" style="margin-bottom:16px;">
|
|
|
|
|
|
|
|
<div style="margin:15px">
|
2014-06-03 09:27:07 +08:00
|
|
|
<span class="font_description"> <%= textilizable(@contestnotifications, :description) %> </span>
|
2014-05-30 20:52:55 +08:00
|
|
|
<br/>
|
2014-06-03 09:27:07 +08:00
|
|
|
<%= link_to_attachments @contestnotifications %>
|
2014-05-30 20:52:55 +08:00
|
|
|
<br/>
|
|
|
|
<!--add comment-->
|
2014-06-03 09:27:07 +08:00
|
|
|
<% if @contestnotifications.commentable? %>
|
2014-05-30 20:52:55 +08:00
|
|
|
<p>
|
|
|
|
<%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %>
|
|
|
|
</p>
|
2014-06-03 09:27:07 +08:00
|
|
|
<%= form_tag({:controller => 'comments', :action => 'create', :id => @contestnotifications}, :id => "add_comment_form", :style => "display:none;") do %>
|
2014-05-30 20:52:55 +08:00
|
|
|
<div class="box">
|
|
|
|
<%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
|
|
|
|
<%= wikitoolbar_for 'comment_comments' %>
|
|
|
|
</div>
|
|
|
|
<p>
|
|
|
|
<%= submit_tag l(:button_add) %>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2014-06-03 09:27:07 +08:00
|
|
|
<% html_title @contestnotifications.title -%>
|
2014-05-30 20:52:55 +08:00
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= stylesheet_link_tag 'scm' %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<!--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? %>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" width="580px" >
|
|
|
|
<p class="font_description">
|
|
|
|
<%= textilizable(comment.comments) %>
|
|
|
|
</p></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="left"><span class="font_lighter"> <%= format_time(comment.created_on) %></span></td>
|
2014-06-03 09:27:07 +08:00
|
|
|
<td width="200" align="right" class="a"><%= link_to_if_authorized image_tag('delete.png'), {:controller => 'comments', :action => 'destroy', :id => @contestnotifications, :comment_id => comment},
|
2014-05-30 20:52:55 +08:00
|
|
|
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete, :title => l(:button_delete) %></td>
|
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<% end if @comments.any? %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--end-->
|