This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/app/views/feeds/_navigation.html.erb

10 lines
430 B
Plaintext

<ul id="feed_list">
<% @feeds.each do |feed| %>
<li>
(<%= link_to "del", feed_path(feed), :remote => true, :method => :delete, :class => "delete_feed button", :confirm => "Delete this feed?" %>,
<%= link_to "err", errors_feed_path(feed), :remote => true, :class => "button", :update => "feed_content" %>)
<%= link_to feed.title, feed_path(feed), :remote => true, :update => "feed_content" %>
</li>
<% end %>
</ul>