This repository has been archived on 2023-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
nccu-announcement/app/views/admin/announcements/_index.html.erb

149 lines
7.1 KiB
Plaintext
Raw Normal View History

2014-11-07 08:32:00 +00:00
<script>
if(document.querySelectorAll("#orbit-bar").length==0) location.reload();
</script>
<table class="table main-list">
<thead>
<tr class="sort-header">
<% @table_fields.each do |f| %>
<%= thead(f) %>
<% end %>
</tr>
</thead>
<tbody>
<% @bulletins.each do |b| %>
<tr>
<td>
<%= b.status_for_table %>
</td>
<td><%= b.category.title %></td>
2015-02-24 06:12:16 +00:00
<!-- <td>
2014-11-07 08:32:00 +00:00
<% if b.expired? %>
2014-12-23 06:51:10 +00:00
<%= b.title %> <span class='label'><%= t(:expired) %></span>
2014-11-14 09:49:20 +00:00
<% elsif b.rejected %>
2014-12-23 06:51:10 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title %></a> <span class='label'><%= t(:rejected) %> : <%= b.rejection_reason rescue "" %></span>
2014-11-07 08:32:00 +00:00
<% elsif !b.approved? %>
2014-12-23 06:51:10 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title %></a> <span class='label'><%= t(:pending) %></span>
2014-11-07 08:32:00 +00:00
<% else %>
2014-12-23 06:51:10 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title %></a>
2014-11-07 08:32:00 +00:00
<% end %>
<div class="quick-edit">
<ul class="nav nav-pills">
<li><a href="#" class="detail-row" onclick="$('#<%= "#{b.id.to_s}-detail" %>').slideToggle(300); return false;"><%= t(:detail) %></a></li>
<% if can_edit_or_delete?(b) %>
<li><a href="/admin/announcements/<%=b.id.to_s%>/edit"><%= t(:edit) %></a></li>
<li><a href="#" class="delete text-error" rel="/admin/announcements/<%=b.id.to_s%>"><%= t(:delete_) %></a></li>
<% if !b.approved && user_can_approve? %>
2014-11-14 09:49:20 +00:00
<li><a href="#" class="appoval_button" data-approve-link="<%= "/#{I18n.locale.to_s}/announcement/#{b.to_param}" %>" data-id="<%= b.id.to_s %>"><%= t("announcement.approve") %></a></li>
2014-11-07 08:32:00 +00:00
<% end %>
<% end %>
</ul>
</div>
2015-02-24 06:12:16 +00:00
</td> -->
<td>
<% if b.expired? %>
<% if b.rejected %>
<% if !b.title_translations["zh_tw"].blank? %>
<%= b.title_translations["zh_tw"] %><span class='label'><%= t(:expired)+''+t(:rejected) %> : <%= b.rejection_reason rescue "" %></span><br />
<% end %>
<% if !b.title_translations["en"].blank? %>
<%= b.title_translations["en"] %><span class='label'><%= t(:expired)+''+t(:rejected) %> : <%= b.rejection_reason rescue "" %></span>
<% end %>
<% else %>
<% if !b.title_translations["zh_tw"].blank? %>
<%= b.title_translations["zh_tw"] %> <span class='label'><%= t(:expired) %></span><br />
<% end %>
<% if !b.title_translations["en"].blank? %>
<%= b.title_translations["en"] %> <span class='label'><%= t(:expired) %></span>
<% end %>
<% end %>
<% elsif b.rejected %>
2015-03-06 01:26:36 +00:00
<%# url = page_for_bulletin(b) %>
2015-02-24 06:12:16 +00:00
<% if !b.title_translations["zh_tw"].blank? %>
2015-03-06 01:26:36 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["zh_tw"] %></a> <span class='label'><%= t(:rejected) %> : <%= b.rejection_reason rescue "" %></span><br />
2015-02-24 06:12:16 +00:00
<% end %>
<% if !b.title_translations["en"].blank? %>
2015-03-06 01:26:36 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["en"] %></a> <span class='label'><%= t(:rejected) %> : <%= b.rejection_reason rescue "" %></span>
2015-02-24 06:12:16 +00:00
<% end %>
<% elsif !b.approved? %>
<% url = page_for_news_bulletin(b) %>
<% if !b.title_translations["zh_tw"].blank? %>
2015-03-06 01:26:36 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["zh_tw"] %></a> <span class='label'><%= t(:pending) %></span><br />
2015-02-24 06:12:16 +00:00
<% end %>
<% if !b.title_translations["en"].blank? %>
2015-03-06 01:26:36 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["en"] %></a> <span class='label'><%= t(:pending) %></span>
2015-02-24 06:12:16 +00:00
<% end %>
<% else %>
<% url = page_for_news_bulletin(b) %>
<% if !b.title_translations["zh_tw"].blank? %>
2015-03-06 01:26:36 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["zh_tw"] %></a><br />
2015-02-24 06:12:16 +00:00
<% end %>
<% if !b.title_translations["en"].blank? %>
2015-03-06 01:26:36 +00:00
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["en"] %></a>
2015-02-24 06:12:16 +00:00
<% end %>
<% end %>
<div class="quick-edit">
<ul class="nav nav-pills">
<li><a href="#" class="detail-row" onclick="$('#<%= "#{b.id.to_s}-detail" %>').slideToggle(300); return false;"><%= t(:detail) %></a></li>
<% if can_edit_or_delete?(b) %>
<li><a href="/admin/announcements/<%=b.id.to_s%>/edit"><%= t(:edit) %></a></li>
<li><a href="#" class="delete text-error" rel="/admin/announcements/<%=b.id.to_s%>"><%= t(:delete_) %></a></li>
<% if !b.approved && user_can_approve? && !b.expired? %>
2015-03-06 01:26:36 +00:00
<li><a href="#" class="appoval_button" data-approve-link="<%= "/#{I18n.locale.to_s}/announcement/#{b.to_param}" %>" data-id="<%= b.id.to_s %>"><%= t("announcement.approve") %></a></li>
2015-02-24 06:12:16 +00:00
<% end %>
<% end %>
</ul>
</div>
2014-11-07 08:32:00 +00:00
</td>
<td><%= format_value b.postdate %></td>
<td class="<%= b.expired? ? "expired" : "" %>"><%= format_value b.deadline %></td>
2014-11-13 06:00:53 +00:00
<td>
<%= MemberProfile.find(b.update_user.member_profile_id).last_name_translations[I18n.locale.to_s] rescue " " %>
<%= MemberProfile.find(b.update_user.member_profile_id).first_name_translations[I18n.locale.to_s] rescue " " %>
</td>
2014-11-07 08:32:00 +00:00
<td><%= b.view_count %></td>
</tr>
<tr class="footable-row-detail">
<td class="footable-cell-detail" colspan="6">
<div id="<%= "#{b.id.to_s}-detail" %>" class="footable-row-detail-inner" style="display: none;">
<div>
<strong><%= t(:tags) %></strong> :
<% b.tags.each do |tag| %>
<span class="label label-warning"><%= tag.name %></span>
<% end %>
</div>
<div>
<strong><%= t("announcement.email_to") %></strong> :
<% b.email_members.each do |member| %>
<span class="label"><%= member.name %></span>
<% end %>
<% unless b.other_mailaddress.nil? %>
<% b.other_mailaddress.split(',').each do |mailaddress| %>
<span class="label"><%= mailaddress %></span>
<% end %>
<% end %>
</div>
</div>
</td>
</tr>
<% end %>
</tbody>
</table>
<%=
content_tag :div, class: "bottomnav clearfix" do
content_tag :div, paginate(@bulletins), class: "pagination pagination-centered"
end
2015-01-07 09:26:39 +00:00
%>
<script type="text/javascript">
$(".appoval_button").on("click",function(){
var url = $(this).data("approve-link"),
modal = $("#approvalModal");
modal.find("iframe").attr("src", url);
modal.find("#object_id").val($(this).data("id"));
modal.modal("show");
return false;
})
</script>