2014-09-24 14:47:53 +08:00
|
|
|
|
<script>
|
|
|
|
|
function cancel() {
|
|
|
|
|
$("#add_contestnotification").hide();
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
<div class="contextual">
|
2014-06-13 09:38:51 +08:00
|
|
|
|
<%= link_to(l(:button_edit),
|
2014-09-12 16:45:03 +08:00
|
|
|
|
edit_contest_contestnotification_path(@contest, @contestnotification),
|
|
|
|
|
:class => 'icon icon-edit',
|
|
|
|
|
:accesskey => accesskey(:edit),
|
|
|
|
|
:onclick => '$("#edit-contestnotifications").show(); return true;') if (User.current.admin? && User.current.logged? )||(User.current == @contest.author && User.current.logged?)%>
|
2014-06-12 10:59:05 +08:00
|
|
|
|
<%= delete_link contest_contestnotification_path(@contest, @contestnotification) if (User.current.admin? && User.current.logged? )||(User.current == @contest.author && User.current.logged?) %>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<h3><strong><%=h @contestnotification.title %></strong></h3>
|
|
|
|
|
|
|
|
|
|
<div id="edit-contestnotifications" style="display:none;">
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<%= labelled_form_for @contestnotification,
|
|
|
|
|
:url => contest_contestnotification_path(@contest),
|
|
|
|
|
:html => { :id => 'contestnotifications-form',
|
|
|
|
|
:multipart => true,
|
|
|
|
|
:method => :put } do |f| %>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
|
|
|
<%= submit_tag l(:button_save) %>
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<%= link_to l(:button_cancel),
|
|
|
|
|
"#",
|
|
|
|
|
:onclick => '$("#edit-contestnotifications").hide(); return false;' %>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<div id="preview" class="wiki"></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="notificationcomments" style="margin-bottom:16px;">
|
|
|
|
|
|
2014-09-24 14:47:53 +08:00
|
|
|
|
<div style="margin:15px" id ="add_contestnotification">
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<span class="font_description">
|
|
|
|
|
<%= textilizable(@contestnotification, :description) %>
|
|
|
|
|
</span>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
<br/>
|
|
|
|
|
<%#= link_to_attachments @contestnotification %>
|
|
|
|
|
<br/>
|
|
|
|
|
<!--add comment-->
|
2014-06-12 11:11:12 +08:00
|
|
|
|
|
|
|
|
|
<% if User.current.logged? %>
|
|
|
|
|
<p>
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<%= toggle_link l(:label_comment_add),
|
|
|
|
|
"add_notificationcomment_form",
|
|
|
|
|
:focus => "notificationcomment_notificationcomments"
|
|
|
|
|
%>
|
2014-06-12 11:11:12 +08:00
|
|
|
|
</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= l(:label_user_login_notificationcomment) %>
|
|
|
|
|
<%= link_to l(:label_user_login_new), signin_path %>
|
|
|
|
|
<% end %>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<%= form_tag( contest_contestnotification_notificationcomments_path(@contest, @contestnotification) ,
|
|
|
|
|
:id => "add_notificationcomment_form",
|
|
|
|
|
:style => "display:none;") do %>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
<div class="box">
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<%= text_area 'notificationcomment',
|
|
|
|
|
'notificationcomments',
|
|
|
|
|
:cols => 80,
|
|
|
|
|
:rows => 15,
|
|
|
|
|
:class => 'wiki-edit'
|
|
|
|
|
%>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
<%= wikitoolbar_for 'notificationcomment_notificationcomments' %>
|
|
|
|
|
</div>
|
|
|
|
|
<p>
|
|
|
|
|
<%= submit_tag l(:button_add) %>
|
2014-09-24 14:47:53 +08:00
|
|
|
|
|
|
|
|
|
<!--modified by longjun 点击取消时收回添加回复的部分-->
|
|
|
|
|
|
|
|
|
|
<%= submit_tag l(:button_cancel),
|
|
|
|
|
:name => nil,
|
|
|
|
|
:onclick => "cancel();",
|
|
|
|
|
:type => 'button',
|
|
|
|
|
:class => "enterprise",
|
|
|
|
|
:onmouseout => "this.style.backgroundPosition = 'left top'",
|
|
|
|
|
:onmouseover => "this.style.backgroundPosition = 'left -30px'"
|
|
|
|
|
%>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
</p>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<% html_title @contestnotification.title -%>
|
|
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
|
<%= stylesheet_link_tag 'scm' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<!--dispaly comments-->
|
|
|
|
|
<div class="line_heng"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<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>
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<td colspan="2" valign="top" width="50" >
|
|
|
|
|
<%= image_tag(url_to_avatar(notificationcomment.author), :class => "avatar")%>
|
|
|
|
|
</td>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
<td>
|
|
|
|
|
<table width="580px" border="0">
|
|
|
|
|
<tr>
|
2014-08-04 15:01:39 +08:00
|
|
|
|
<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>
|
2014-09-24 14:47:53 +08:00
|
|
|
|
<!--modified by longjun 删除变成竖的,IE浏览器兼容,将宽度设置为40px-->
|
|
|
|
|
<td width="40px">
|
2014-08-04 15:01:39 +08:00
|
|
|
|
<% if notificationcomment.author==User.current|| User.current.admin? %>
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<%= link_to(l(:label_bid_respond_delete),
|
|
|
|
|
contest_contestnotification_notificationcomment_path(@contest, @contestnotification,notificationcomment),
|
|
|
|
|
:method => :delete,:confirm => l(:text_are_you_sure), :title => l(:button_delete)) %>
|
2014-08-04 15:01:39 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
</td>
|
2014-06-07 10:02:00 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" width="580px" >
|
|
|
|
|
<p class="font_description">
|
|
|
|
|
<%= textilizable(notificationcomment.notificationcomments) %>
|
|
|
|
|
</p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<td align="left">
|
|
|
|
|
<span class="font_lighter">
|
|
|
|
|
<%= format_time(notificationcomment.created_at) %>
|
|
|
|
|
</span>
|
|
|
|
|
</td>
|
2014-06-13 11:49:11 +08:00
|
|
|
|
<td width="200" align="right" class="a"><%#= link_to_if_authorized_contest image_tag('delete.png'), {:controller => 'notificationcomments', :action => 'destroy', :id => @contestnotifications, :notificationcomment_id => notificationcomment},
|
2014-06-07 10:02:00 +08:00
|
|
|
|
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete, :title => l(:button_delete) %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<% end if @notificationcomments.any? %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--end-->
|