Sha256: cf33ba4ae1c2b986c374d33c6f670b0d09b411c52bc8c6286e61e932103290d0

Contents?: true

Size: 1.78 KB

Versions: 16

Compression:

Stored size: 1.78 KB

Contents

<tr class="<%= cycle('even', 'odd') %>">
  <td class="icon">
    <%= render_icon attachment.icon_css_class %>
  </td>
  <td class="name">
    <%- if permitted_to?(:show, :attachments) -%>
    <%= link_to(
      attachment.name,
      alchemy.admin_attachment_path(attachment),
      :target => '_blank',
      :title => t('View File')
    ) %>
    <%- else -%>
    <%= attachment.name %>
    <%- end -%>
  </td>
  <td class="file_name"><%= attachment.filename %></td>
  <td class="file_type"><%= mime_to_human(attachment.content_type) %></td>
  <td class="file_size"><%= number_to_human_size(attachment.size) %></td>
  <td class="date"><%= l(attachment.created_at, :format => :short) %></td>
  <td class="tools long">
    <%- permitted_to?(:download, :attachments) do -%>
    <%= link_to(
      "",
      alchemy.download_admin_attachment_path(attachment),
      :title => t("download_file", :filename => attachment.filename),
      :class => "icon file_download"
    ) %>
    <%- end -%>
    <%- permitted_to?(:destroy, :alchemy_admin_attachments) do -%>
    <%= link_to_confirmation_window(
      "",
      t("confirm_to_delete_file"),
      alchemy.admin_attachment_path(
        :id => attachment,
        :query => params[:query],
        :page => params[:page],
        :per_page => params[:per_page]
      ),
      {
        :class => 'icon file_delete',
        :title => t('delete_file')
      }
    ) -%>
    <%- end -%>
    <%- permitted_to?(:edit, :alchemy_admin_attachments) do -%>
    <%= link_to_overlay_window("",
      alchemy.edit_admin_attachment_path(attachment, :query => params[:query], :page => params[:page]),
      {
        :title => t('rename_file'),
        :size => '380x100'
      },
      :class => 'icon file_edit',
      :title => t('rename_file')
    ) -%>
    <%- end -%>
  </td>
</tr>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
alchemy_cms-2.2.4 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.3.2 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.3.1 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.2 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.1 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.0 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc15 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc14 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc13 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc11 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc8 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc7 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc6 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc3 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc2 app/views/alchemy/admin/attachments/_attachment.html.erb
alchemy_cms-2.2.rc1 app/views/alchemy/admin/attachments/_attachment.html.erb