<%= job.get_post_type_label.html_safe %> |
<% if job.post_type == "type1" %>
" target="_blank"><%= job.job_title %>
<% elsif job.post_type == "type2" %>
" target="_blank"><%= job.job_title %>
<% elsif job.post_type == "type3" %>
" target="_blank"><%= job.job_title %>
<% end %>
|
<%= job.created_at.strftime("%Y-%m-%d") %> |
<%= job.filled ? "Yes" : "No" %> |
<% job_count = job.get_application_count %>
<% if job_count > 0 %>
<%= t("recruitment.show_application") %> (<%= job_count %>) |
<% else %>
<%= t("recruitment.show_application") %>
<% end %>
<% if job.post_type == "type1" %>
<%= t("recruitment.edit") %>
<% elsif job.post_type == "type2" %>
<%= t("recruitment.edit") %>
<% elsif job.post_type == "type3" %>
<%= t("recruitment.edit") %>
<% end %>
<% if !job.filled %>
<%= t("recruitment.mark_filled") %>
<% else %>
<%= t("recruitment.not_filled") %>
<% end %>
<%= t(:delete_) %>
|
<% end %>
<% end %>