currency update
This commit is contained in:
parent
ed9da67a27
commit
4c6f188cf8
|
@ -11,6 +11,7 @@ class RecruitmentJob
|
|||
field :other_conditions, localize: true
|
||||
field :expiry_date, type: DateTime
|
||||
field :salary #type1 => negotiable type2 => according to company rules
|
||||
field :currency_type
|
||||
field :travel_assignment #type1 => Need to travel, type2 => occasionally, type3 => travelling not required
|
||||
field :working_time #type1 => Day Shift, type2 => Night Shift
|
||||
field :holiday_system #type1 => According to Company Rules, type2 => other
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<% if @jobsposted.blank? %>
|
||||
<tr><td class="no-jobs" colspan="5"><%= t("recruitment.no_jobs_posted") %></td></tr>
|
||||
<tr><td class="no-jobs" colspan="6"><%= t("recruitment.no_jobs_posted") %></td></tr>
|
||||
<% else %>
|
||||
<% @jobsposted.each do |job| %>
|
||||
<tr>
|
||||
|
|
|
@ -106,6 +106,14 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Job Category -->
|
||||
<div class="form-group">
|
||||
<%= f.label :currency_type, t("recruitment.currency_type"), :class => "col-sm-2 control-label" %>
|
||||
<div class="col-sm-6">
|
||||
<%= f.select :currency_type, ["INR","TWD","USD"] ,{:class => "form-control"} %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- location of work -->
|
||||
|
||||
<div class="form-group">
|
||||
|
|
|
@ -253,6 +253,7 @@ en:
|
|||
resume_text: Download CV
|
||||
gender_title: Gender
|
||||
martial_title: Marital Status
|
||||
currency_type: Currency Type
|
||||
martial:
|
||||
type1: Un-Married
|
||||
type2: Married
|
||||
|
|
|
@ -255,6 +255,7 @@ zh_tw:
|
|||
resume_text: 下載履歷
|
||||
gender_title: 性別
|
||||
martial_title: 婚姻狀況
|
||||
currency_type: 貨幣類型
|
||||
martial:
|
||||
type1: 未婚
|
||||
type2: 已婚
|
||||
|
|
Loading…
Reference in New Issue