forked from spen/seminar
12 lines
512 B
Plaintext
12 lines
512 B
Plaintext
<%= f.fields_for :title_translations do |f| %>
|
|
<% @site_in_use_locales.each do |locale| %>
|
|
<div class="control-group">
|
|
<label class="control-label"><%= "#{t(:name)} (#{t(locale)})" %></label>
|
|
<div class="controls">
|
|
<input class="input-large" id="<%=locale%>" name="seminar_item[title_translations][<%=locale%>]" placeholder="<%=t(:name)%>" type="text">
|
|
<span class="help-inline hide"><%= t('front_page.name_field_helper') %></span>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|