##// END OF EJS Templates
Add ATOM auto discovery link to the Projects list. #5317...
Eric Davis -
r3662:d635fff3f540
parent child
Show More
@@ -1,21 +1,25
1 <% content_for :header_tags do %>
2 <%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
3 <% end %>
4
1 5 <div class="contextual">
2 6 <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'add'}, :class => 'icon icon-add') + ' |' if User.current.allowed_to?(:add_project, nil, :global => true) %>
3 7 <%= link_to(l(:label_issue_view_all), { :controller => 'issues' }) + ' |' if User.current.allowed_to?(:view_issues, nil, :global => true) %>
4 8 <%= link_to l(:label_overall_activity), { :controller => 'projects', :action => 'activity' }%>
5 9 </div>
6 10
7 11 <h2><%=l(:label_project_plural)%></h2>
8 12
9 13 <%= render_project_hierarchy(@projects)%>
10 14
11 15 <% if User.current.logged? %>
12 16 <p style="text-align:right;">
13 17 <span class="my-project"><%= l(:label_my_projects) %></span>
14 18 </p>
15 19 <% end %>
16 20
17 21 <% other_formats_links do |f| %>
18 22 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
19 23 <% end %>
20 24
21 25 <% html_title(l(:label_project_plural)) -%>
General Comments 0
You need to be logged in to leave comments. Login now