orbit-basic/app/views/admin/assets/file_upload.html.erb

64 lines
2.7 KiB
Plaintext
Raw Normal View History

2012-05-16 22:28:29 +00:00
<%= javascript_include_tag "new_admin" %>
<%= stylesheet_link_tag "new_admin" %>
2012-08-07 09:32:15 +00:00
<%= javascript_include_tag "tinymce/tiny_mce_popup" %>
2012-05-16 22:28:29 +00:00
2012-08-07 09:32:15 +00:00
<%= flash_messages %>
<body onload="tinyMCEPopup.executeOnLoad('init();')">
2012-05-16 22:28:29 +00:00
<%= form_for :asset, :url => admin_assets_path(:uploader => true), :html => {:id => 'ajaxForm', :multipart => true } do |f| %>
<div class="modal-header">
2012-09-12 11:12:50 +00:00
<h3><%= t 'file.upload' %></h3>
2012-05-16 22:28:29 +00:00
</div>
2012-08-13 10:45:02 +00:00
<label class="control-label error" id="dyn_error"></label>
2012-05-16 22:28:29 +00:00
<div class="modal-body form-horizontal">
<div class="control-group">
2012-09-12 11:12:50 +00:00
<label for="title" class="control-label error"><%= t :title %></label>
2012-05-16 22:28:29 +00:00
<div class="controls">
2012-07-25 21:58:09 +00:00
<%= f.fields_for :title_translations do |f| %>
2012-05-17 11:09:52 +00:00
<div>
<% @site_in_use_locales.each do |locale| %>
2012-05-17 11:40:30 +00:00
<%= content_tag :label do -%>
<div>
<%= I18nVariable.from_locale(locale) %>
2012-07-25 21:58:09 +00:00
<%= f.text_field locale, :class => "input-large", :value => (@asset.title_translations[locale] rescue nil) %>
2012-05-17 11:40:30 +00:00
</div>
<% end %>
<% end %>
2012-05-17 11:09:52 +00:00
</div>
2012-05-16 22:28:29 +00:00
<% end %>
</div>
</div>
<div class="control-group">
2012-09-12 11:12:50 +00:00
<label for="description" class="control-label error"><%= t :description %></label>
2012-05-16 22:28:29 +00:00
<div class="controls">
2012-07-25 21:58:09 +00:00
<%= f.fields_for :description_translations do |f| %>
2012-05-17 11:09:52 +00:00
<div>
<% @site_in_use_locales.each do |locale| %>
2012-05-17 11:40:30 +00:00
<%= content_tag :label do -%>
<div>
<%= I18nVariable.from_locale(locale) %>
2012-07-25 21:58:09 +00:00
<%= f.text_field locale, :class => "input-large", :value => (@asset.title_translations[locale] rescue nil) %>
2012-05-17 11:40:30 +00:00
</div>
<% end %>
<% end %>
2012-05-17 11:09:52 +00:00
</div>
2012-05-16 22:28:29 +00:00
<% end %>
</div>
</div>
<div class="control-group">
2012-09-12 11:12:50 +00:00
<%#= f.label :data, t(:data), :class => "control-label" %>
2012-05-16 22:28:29 +00:00
<div class="controls">
<%= f.file_field :data, :class => 'upload' %>
</div>
</div>
</div>
<div style="position: absolute; width: 100%; bottom: 0;">
<div class="modal-footer">
<!-- <a id='ajax_form_submit' class="btn btn-primary"><#%= t(:create_) %></a> -->
2012-09-27 05:34:40 +00:00
<input type="submit" value="<%= t(:create_) %>" class="btn btn-primary" />
2012-05-16 22:28:29 +00:00
</div>
</div>
2012-08-07 09:32:15 +00:00
<% end %>
2012-08-06 07:13:21 +00:00
</body>