orbit-basic/app/views/admin/module_tags/_add.html.erb

9 lines
389 B
Plaintext
Raw Normal View History

<%= form_for :tag, :url => admin_module_tags_path, :remote => true, :html => {:id => 'tag_form'} do |f| %>
2013-04-26 03:18:57 +00:00
<%= f.fields_for :name_translations do |f| %>
<% @site_in_use_locales.each do |locale| %>
2013-04-26 03:18:57 +00:00
<%= I18nVariable.from_locale(locale) %>:<%= f.text_field locale %>
<% end %>
<% end %>
<%= hidden_field_tag :module_app_id, @module_app_id %>
2012-09-24 00:36:29 +00:00
<%= f.submit t(:add) %>
2012-02-14 16:32:20 +00:00
<% end %>