<% unless flash[:notice].nil? %>
<%= flash[:notice] %>
<% end %>
<%= @employee.first_name %> | <%= t('employee_number') %> : <%= @employee.employee_number %> | Department : <%= @employee.employee_department.name %>
<% if @employee.status == true %>
<%= link_to "#{t('employee_leaving_institution')}", :controller => "employee", :action => "change_to_former", :id => @employee.id %>
<%= t('employee_leaving_institution_msg') %>
<% else %>
<%= t('reason') %>:<%= %>
<% end %>
<%= link_to"#{t('remove_record')}",{ :controller => "employee", :action => "delete", :id => @employee.id },:confirm=>"#{t('confirm')}"%>
<%= t('remove_record_msg') %>