Sha256: f42ee0e60342e74461d1700f6fb786cbdf3fb90d1a75a4dd8d22aa9f2199b432

Contents?: true

Size: 1.99 KB

Versions: 9

Compression:

Stored size: 1.99 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 => '520x400',
          :resizable => 'true'
        },
        :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 => '520x400',
          :resizable => 'true'
        },
        :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

9 entries across 9 versions & 1 rubygems

Version Path
alchemy_cms-2.5.3.1 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.3 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.2.2 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.2.1 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.2 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.1 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.0 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.0.rc3 app/views/alchemy/essences/_essence_file_editor.html.erb
alchemy_cms-2.5.0.b9 app/views/alchemy/essences/_essence_file_editor.html.erb