diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2009-02-20 22:45:16 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2009-02-20 22:45:16 +0000 |
commit | befe278fa9a3570c67b1b8a606e7cf7a4f78ac10 (patch) | |
tree | df93e864ac1c4dc4585e797268d8de32cfefe6fb | |
parent | b9e95e7a708501b62a2a886a544b97dbf41838b8 (diff) | |
download | redmine-befe278fa9a3570c67b1b8a606e7cf7a4f78ac10.tar.gz redmine-befe278fa9a3570c67b1b8a606e7cf7a4f78ac10.zip |
Allow the other format links to appear on the issue list (ATOM, PDF, CSV).
#2779
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2487 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/index.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/index.rhtml b/app/views/issues/index.rhtml index dc93e41f2..3b6ce650c 100644 --- a/app/views/issues/index.rhtml +++ b/app/views/issues/index.rhtml @@ -43,6 +43,7 @@ <% else %> <%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %> <p class="pagination"><%= pagination_links_full @issue_pages, @issue_count %></p> +<% end %> <% other_formats_links do |f| %> <%= f.link_to 'Atom', :url => {:query_id => (@query.new_record? ? nil : @query), :key => User.current.rss_key} %> @@ -51,7 +52,6 @@ <% end %> <% end %> -<% end %> <% content_for :sidebar do %> <%= render :partial => 'issues/sidebar' %> |