orbit-basic/app/views/admin/tags/_form.html.erb

10 lines
419 B
Plaintext
Raw Normal View History

<%= flash_messages %>
<%= f.error_messages %>
<%= f.fields_for :name_translations do |f| %>
<% @site_valid_locales.each do |locale| %>
<%= f.label :locale, "#{t(:name)} #{I18nVariable.from_locale(locale)}" %>
<%= f.text_field locale, class: 'input-large', placeholder: "#{t(:name)} #{I18nVariable.from_locale(locale)}", value: (@tag.name_translations[locale] rescue nil), id: locale %>
2013-04-26 03:18:57 +00:00
<% end %>
<% end %>