2010-02-01 09:24:28 +00:00
|
|
|
<p>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= f.label :filename, t('admin.file_name') %>
|
2010-02-01 09:24:28 +00:00
|
|
|
<%= f.text_field :filename, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= f.label :description, t('admin.description') %>
|
2010-02-01 09:24:28 +00:00
|
|
|
<%= f.text_field :description, :class => 'text' %>
|
|
|
|
</p>
|
|
|
|
|
2012-05-16 03:07:11 +00:00
|
|
|
<p>
|
|
|
|
<%= f.label :category %>
|
|
|
|
<%= f.select :asset_category_id, @asset_categories.collect{|t| [ t.i18n_variable[I18n.locale], t.id ]}, {}, :class => "input-medium" %>
|
|
|
|
</p>
|
|
|
|
|
2010-02-01 09:24:28 +00:00
|
|
|
<p>
|
2012-01-24 03:38:53 +00:00
|
|
|
<%= f.label :data, t('admin.data'), :class => 'file' %>
|
2010-02-01 09:24:28 +00:00
|
|
|
<%= f.file_field :data %>
|
|
|
|
</p>
|