2014-05-26 07:18:59 +00:00
|
|
|
<%= label_tag "key","key", :class=>"muted" %>
|
|
|
|
<%= f.text_field :key, :class=>"input-large" %>
|
|
|
|
|
|
|
|
<%= f.fields_for :title_translations do |f| %>
|
|
|
|
<% @site_in_use_locales.each do |locale| %>
|
2014-05-28 10:47:19 +00:00
|
|
|
<%= label_tag "name-#{locale}", "#{t(:name)} (#{t(locale.to_s)})" %>
|
2014-05-26 10:52:15 +00:00
|
|
|
<%= f.text_field locale, :class => 'input-large', :value => (@role_status.title_translations[locale] rescue ''), placeholder: t(:name) %>
|
2014-05-26 07:18:59 +00:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<%= f.hidden_field :role_id, :value => params[:role_id] if !params[:role_id].blank? %>
|