|
|
|
@ -1,21 +1,26 @@
|
|
|
|
|
|
|
|
|
|
<div class="contextual">
|
|
|
|
|
<%= link_to(l(:button_edit),
|
|
|
|
|
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?)%>
|
|
|
|
|
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?)%>
|
|
|
|
|
<%= delete_link contest_contestnotification_path(@contest, @contestnotification) if (User.current.admin? && User.current.logged? )||(User.current == @contest.author && User.current.logged?) %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<h3><strong><%=h @contestnotification.title %></strong></h3>
|
|
|
|
|
|
|
|
|
|
<div id="edit-contestnotifications" style="display:none;">
|
|
|
|
|
<%= labelled_form_for @contestnotification, :url => contest_contestnotification_path(@contest),
|
|
|
|
|
:html => { :id => 'contestnotifications-form', :multipart => true, :method => :put } do |f| %>
|
|
|
|
|
<%= labelled_form_for @contestnotification,
|
|
|
|
|
:url => contest_contestnotification_path(@contest),
|
|
|
|
|
:html => { :id => 'contestnotifications-form',
|
|
|
|
|
:multipart => true,
|
|
|
|
|
:method => :put } do |f| %>
|
|
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
|
|
|
<%= submit_tag l(:button_save) %>
|
|
|
|
|
<%= link_to l(:button_cancel), "#", :onclick => '$("#edit-contestnotifications").hide(); return false;' %>
|
|
|
|
|
<%= link_to l(:button_cancel),
|
|
|
|
|
"#",
|
|
|
|
|
:onclick => '$("#edit-contestnotifications").hide(); return false;' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<div id="preview" class="wiki"></div>
|
|
|
|
|
</div>
|
|
|
|
@ -23,7 +28,9 @@
|
|
|
|
|
<div id="notificationcomments" style="margin-bottom:16px;">
|
|
|
|
|
|
|
|
|
|
<div style="margin:15px">
|
|
|
|
|
<span class="font_description"> <%= textilizable(@contestnotification, :description) %> </span>
|
|
|
|
|
<span class="font_description">
|
|
|
|
|
<%= textilizable(@contestnotification, :description) %>
|
|
|
|
|
</span>
|
|
|
|
|
<br/>
|
|
|
|
|
<%#= link_to_attachments @contestnotification %>
|
|
|
|
|
<br/>
|
|
|
|
@ -31,16 +38,26 @@
|
|
|
|
|
|
|
|
|
|
<% if User.current.logged? %>
|
|
|
|
|
<p>
|
|
|
|
|
<%= toggle_link l(:label_comment_add), "add_notificationcomment_form", :focus => "notificationcomment_notificationcomments" %>
|
|
|
|
|
<%= toggle_link l(:label_comment_add),
|
|
|
|
|
"add_notificationcomment_form",
|
|
|
|
|
:focus => "notificationcomment_notificationcomments"
|
|
|
|
|
%>
|
|
|
|
|
</p>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= l(:label_user_login_notificationcomment) %>
|
|
|
|
|
<%= link_to l(:label_user_login_new), signin_path %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<%= form_tag( contest_contestnotification_notificationcomments_path(@contest, @contestnotification) , :id => "add_notificationcomment_form", :style => "display:none;") do %>
|
|
|
|
|
<%= form_tag( contest_contestnotification_notificationcomments_path(@contest, @contestnotification) ,
|
|
|
|
|
:id => "add_notificationcomment_form",
|
|
|
|
|
:style => "display:none;") do %>
|
|
|
|
|
<div class="box">
|
|
|
|
|
<%= text_area 'notificationcomment', 'notificationcomments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
|
|
|
|
|
<%= text_area 'notificationcomment',
|
|
|
|
|
'notificationcomments',
|
|
|
|
|
:cols => 80,
|
|
|
|
|
:rows => 15,
|
|
|
|
|
:class => 'wiki-edit'
|
|
|
|
|
%>
|
|
|
|
|
<%= wikitoolbar_for 'notificationcomment_notificationcomments' %>
|
|
|
|
|
</div>
|
|
|
|
|
<p>
|
|
|
|
@ -65,7 +82,9 @@
|
|
|
|
|
<% 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(notificationcomment.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>
|
|
|
|
@ -80,8 +99,9 @@
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<% if notificationcomment.author==User.current|| User.current.admin? %>
|
|
|
|
|
<%= 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)) %>
|
|
|
|
|
<%= 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)) %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
@ -92,7 +112,11 @@
|
|
|
|
|
</p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="left"><span class="font_lighter"> <%= format_time(notificationcomment.created_at) %></span></td>
|
|
|
|
|
<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_contest 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>
|
|
|
|
|