Sha256: 27a8ad8814d2bb7c05b5742c1de40fa6720fa04e83ee7d3e2de55de0f2d2cb7c

Contents?: true

Size: 1.98 KB

Versions: 7

Compression:

Stored size: 1.98 KB

Contents

<div class="content_editor" id="<%= content_dom_id(content) %>">
  <label style="display: inline">
    <%= render_content_name(content) %>
    <%= delete_content_link(content) %>
  </label>
  <div class="file" id="file_<%= content.id %>">
    <div class="file_icon">
    <% if content.ingredient.nil? %>
      <%= link_to_overlay_window("",
        alchemy.admin_attachments_path(
          :content_id => content.id,
          :only => options[:file_assign_show_only],
          :except => options[:file_assign_do_not_show],
          :options => options
        ),
        {
          :title => _t(:assign_file),
          :size => '780x580',
          :close_on_escape => false
        },
        :class => 'assign_file',
        :title => _t(:assign_file)
      ) %>
    <% else %>
      <%= render_icon(content.ingredient.icon_css_class) %>
    <% end %>
    </div>
    <div class="file_name">
      <%= content.ingredient.name rescue ("&#x2190;" + _t(:assign_file_from_archive)).html_safe %>
    </div>
    <% unless content.ingredient.nil? %>
    <%= hidden_field_tag content.form_field_name(:attachment_id), content.ingredient.id %>
    <div class="essence_file_tools">
      <%= link_to_overlay_window("",
        alchemy.admin_attachments_path(
          :content_id => content.id,
          :only => options[:file_assign_show_only],
          :except => options[:file_assign_do_not_show],
          :options => options
        ),
        {
          :title => _t(:assign_file),
          :size => '780x580',
          :close_on_escape => false
        },
        :class => 'assign_file',
        :title => _t(:assign_file)
      ) %>
      <%= link_to_overlay_window("",
        url_for(
          :controller => 'essence_files',
          :action => 'edit',
          :id => content
        ),
        {
          :title => _t(:edit_file_properties),
          :size => '400x150'
        },
        :class => 'edit_file',
        :title => _t(:edit_file_properties)
      ) %>
    </div>
    <% end %>
  </div>
</div>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
alchemy_cms-2.6.3 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.7.0 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.6.2.1 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.6.2 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.6.1 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.6.0 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.6.0.rc5 app/views/alchemy/essences/_essence_file_editor.html.erb