149 lines
7.1 KiB
Plaintext
149 lines
7.1 KiB
Plaintext
<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>
|
||
<!-- <td>
|
||
<% if b.expired? %>
|
||
<%= b.title %> <span class='label'><%= t(:expired) %></span>
|
||
<% elsif b.rejected %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title %></a> <span class='label'><%= t(:rejected) %> : <%= b.rejection_reason rescue "" %></span>
|
||
<% elsif !b.approved? %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title %></a> <span class='label'><%= t(:pending) %></span>
|
||
<% else %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title %></a>
|
||
<% 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? %>
|
||
<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>
|
||
<% end %>
|
||
<% end %>
|
||
</ul>
|
||
</div>
|
||
</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 %>
|
||
<%# url = page_for_bulletin(b) %>
|
||
<% if !b.title_translations["zh_tw"].blank? %>
|
||
<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 />
|
||
<% end %>
|
||
<% if !b.title_translations["en"].blank? %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["en"] %></a> <span class='label'><%= t(:rejected) %> : <%= b.rejection_reason rescue "" %></span>
|
||
<% end %>
|
||
<% elsif !b.approved? %>
|
||
<% url = page_for_news_bulletin(b) %>
|
||
<% if !b.title_translations["zh_tw"].blank? %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["zh_tw"] %></a> <span class='label'><%= t(:pending) %></span><br />
|
||
<% end %>
|
||
<% if !b.title_translations["en"].blank? %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["en"] %></a> <span class='label'><%= t(:pending) %></span>
|
||
<% end %>
|
||
<% else %>
|
||
<% url = page_for_news_bulletin(b) %>
|
||
<% if !b.title_translations["zh_tw"].blank? %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["zh_tw"] %></a><br />
|
||
<% end %>
|
||
<% if !b.title_translations["en"].blank? %>
|
||
<a href="<%=page_for_bulletin(b)%>" target="_blank"><%= b.title_translations["en"] %></a>
|
||
<% 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? %>
|
||
<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>
|
||
<% end %>
|
||
<% end %>
|
||
</ul>
|
||
</div>
|
||
</td>
|
||
<td><%= format_value b.postdate %></td>
|
||
<td class="<%= b.expired? ? "expired" : "" %>"><%= format_value b.deadline %></td>
|
||
<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>
|
||
<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
|
||
%>
|
||
|
||
<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> |