Sha256: 6c0b1f768573205fef9a728c0ccb102ed055931f87e6b10b7e67edbd09342fce
Contents?: true
Size: 1.81 KB
Versions: 25
Compression:
Stored size: 1.81 KB
Contents
<h1><%= t('muck.raker.feeds_title') %></h1> <div> <p> <%= link_to t('muck.raker.discover_feed'), new_feed_preview_path, :class => 'iframe lightbox' %> <%= link_to t('muck.raker.add_feed'), new_feed_path, :class => 'iframe lightbox' %> <%= link_to t('muck.raker.add_feed_advanced'), new_extended_feeds_path, :class => 'iframe lightbox' %> </p> <table class="feeds"> <tr> <th><%= link_to t('muck.raker.approval_status'), sort_feeds_link(params[:order], params[:asc], 'status', true) %></th> <th><%= link_to t('muck.raker.status'), sort_feeds_link(params[:order], params[:asc], 'status', true) %></th> <th><%= link_to t('muck.raker.default_language'), sort_feeds_link(params[:order], params[:asc], 'languages.english_name', true) %></th> <th><%= link_to t('muck.raker.entries_count'), sort_feeds_link(params[:order], params[:asc], 'entries_count', true) %></th> <th><%= link_to t('muck.raker.repository'), sort_feeds_link(params[:order], params[:asc], 'harvested_from_title', true) %></th> <th><%= link_to t('muck.raker.title'), sort_feeds_link(params[:order], params[:asc], 'title', true) %></th> <th><%= link_to t('muck.raker.harvested_at'), sort_feeds_link(params[:order], params[:asc], 'last_harvested_at', true) %></th> <th><%= link_to t('muck.raker.added_date'), sort_feeds_link(params[:order], params[:asc], 'created_at', true) %></th> </tr> <%= render :partial => 'feeds/feed_row', :collection => @feeds, :locals => { :show_admin => true } %> </table> <div class="clear"> <%= will_paginate @feeds %> </div> </div> <% content_for :javascript do -%> jQuery(document).ready(function() { jQuery('a.lightbox').fancybox({ 'hideOnContentClick': true, 'overlayShow': true, 'frameWidth': 700, 'frameHeight': 600 }); }); <% end -%>
Version data entries
25 entries across 25 versions & 1 rubygems