19 lines
479 B
Plaintext
19 lines
479 B
Plaintext
<p>
|
|
<%= f.label :filename, t('admin.file_name') %>
|
|
<%= f.text_field :filename, :class => 'text' %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :description, t('admin.description') %>
|
|
<%= f.text_field :description, :class => 'text' %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :category %>
|
|
<%= f.select :asset_category_id, @asset_categories.collect{|t| [ t.i18n_variable[I18n.locale], t.id ]}, {}, :class => "input-medium" %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :data, t('admin.data'), :class => 'file' %>
|
|
<%= f.file_field :data %>
|
|
</p> |