Sha256: 77de995ff3bdf2681a97d520d5c8743b654f65744b34d46fbf536356dc9d0589

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

<%= javascript_tag "try { $('insert_image_dialog_content').innerHTML = ''; } catch (e) {}" %>

<div id="save_errors" class="error"></div>
<h3>Create Download Link</h3>

<p>Select the file you'd like to make available for site visitors to download.</p>

<%= form_tag_with_upload_progress({ :action => 'receive_file', :id => @pg },
                                  { :finish => "if (arguments[0]) { $('filename').value = arguments[0]; $('mainform').onsubmit(); }" }) do -%>
<table>
  <tr>
    <td>File:</td>
    <td>
      <%= file_field 'file', 'data', class: 'form', style: 'margin-bottom: 0; min-width: 150px' %>
    </td>
  </tr>
  <tr>
    <td></td>
    <td>
      <div id="upload_status_div" class="error"><%= upload_status_tag %></div>
      <%= submit_tag 'Finish', class: 'form_button', style: 'width: 70px;', data: { disable_with: 'Uploading...' } %>
      <%= link_to_function "Cancel", "cancelInsertFile()" %>
    </td>
  </tr>
</table>
<%- end -%>

<%= form_remote_tag(:update => 'insert_file_dialog_content', :html => { :id => 'mainform' },
                    :url => { :action => 'create_file_link', :id => @pg }) do -%>
  <%= text_field_tag 'filename', '', :style => 'display: none' %>
<%- end -%>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
imagine_cms-5.2.6 app/views/manage/cms_pages/_upload_file.html.erb
imagine_cms-5.2.5 app/views/manage/cms_pages/_upload_file.html.erb