summaryrefslogtreecommitdiffstats
path: root/app/views/issues/index.rhtml
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-03-05 08:25:22 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-03-05 08:25:22 +0000
commit942091f9e844f673240d75c27f4c6d2167a664e1 (patch)
tree1f27b4f8c26722b66f95dae8adeeeb40ed7513fa /app/views/issues/index.rhtml
parent8ea2ecb983c2a48c1a8ec5bb680f711829a91e0c (diff)
downloadredmine-942091f9e844f673240d75c27f4c6d2167a664e1.tar.gz
redmine-942091f9e844f673240d75c27f4c6d2167a664e1.zip
Display links to Atom feeds (closes #496, #750).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1185 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/index.rhtml')
-rw-r--r--app/views/issues/index.rhtml12
1 files changed, 7 insertions, 5 deletions
diff --git a/app/views/issues/index.rhtml b/app/views/issues/index.rhtml
index 4d1f4f176..d3408fa99 100644
--- a/app/views/issues/index.rhtml
+++ b/app/views/issues/index.rhtml
@@ -41,12 +41,14 @@
<p class="nodata"><%= l(:label_no_data) %></p>
<% else %>
<%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %>
-<div class="contextual">
-<%= l(:label_export_to) %>
-<%= link_to 'CSV', {:format => 'csv'}, :class => 'icon icon-csv' %>,
-<%= link_to 'PDF', {:format => 'pdf'}, :class => 'icon icon-pdf' %>
-</div>
<p class="pagination"><%= pagination_links_full @issue_pages, @issue_count %></p>
+
+<p class="other-formats">
+<%= l(:label_export_to) %>
+<span><%= link_to 'Atom', {:format => 'atom', :key => User.current.rss_key}, :class => 'feed' %></span>
+<span><%= link_to 'CSV', {:format => 'csv'}, :class => 'csv' %></span>
+<span><%= link_to 'PDF', {:format => 'pdf'}, :class => 'pdf' %></span>
+</p>
<% end %>
<% end %>