Sha256: c848c9f6c3e7b638c33f38b95156a7225975deefecddf481664346803fe0d1eb

Contents?: true

Size: 1.08 KB

Versions: 5

Compression:

Stored size: 1.08 KB

Contents

<div id="assets">
  <p>
    <%= cms_icon 'picture_add.png' %> <%= link_to t('assets.actions.index.new'), new_cms_asset_path %>
  </p>

  <% if @cms_assets.empty? %>
    <p><%= t 'assets.actions.index.none' %></p>
  <% else %>
    <% if @cms_assets.any?(&:image?) %>
    <p class="preview"><%= link_to_function 'Toggle image previews', "asset_preview_toggle()" %></p>
    <% end %>

    <ul>
      <% @context_asset_tags.each do |tag| %>
        <li class="group tagged">
          <h4><%= tag.to_s %> <%= link_to cms_icon('picture_add.png', :title => 'Add a new asset with this tag'), new_cms_asset_path(:tag => tag.to_s) %></h4>
          <ul>
            <%= render :partial => 'cms/assets/asset', :collection => @context.assets.tagged_with(tag).ordered %>
          </ul>
        </li>
      <% end %>
      <li class="group untagged">
        <% unless @context_asset_tags.blank? %>
        <h4>Untagged</h4>
        <% end %>
        <ul>
          <%= render :partial => 'cms/assets/asset', :collection => @context.assets.untagged.ordered %>
        </ul>
      </li>
    </ul>
  <% end %>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
liquid_cms-0.3.2.0 app/views/cms/assets/_list.html.erb
liquid_cms-0.2.2.0 app/views/cms/assets/_list.html.erb
liquid_cms-0.2.1.1 app/views/cms/assets/_list.html.erb
liquid_cms-0.3.1.0 app/views/cms/assets/_list.html.erb
liquid_cms-0.2.1.0 app/views/cms/assets/_list.html.erb