annotate app/views/projects/index.html.erb @ 1271:cf4cc816278a
live last_rails2_version
Remove inner quotes from realm (workaround for #577)
author |
Chris Cannam |
date |
Tue, 07 May 2013 12:45:51 +0100 |
parents |
91db8e091f10 |
children |
16826c3afbba |
rev |
line source |
Chris@0
|
1 <% content_for :header_tags do %>
|
Chris@0
|
2 <%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
|
Chris@0
|
3 <% end %>
|
Chris@0
|
4
|
Chris@0
|
5 <div class="contextual">
|
chris@22
|
6 <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }%>
|
Chris@100
|
7 <%= '| ' + link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %>
|
Chris@0
|
8 </div>
|
Chris@0
|
9
|
chris@124
|
10 <h2>
|
chris@124
|
11 <%= l("label_project_all") %>
|
chris@124
|
12 </h2>
|
chris@124
|
13
|
chris@124
|
14 <%= render_project_table(@projects) %>
|
chris@123
|
15
|
chris@123
|
16 <p class="pagination"><%= pagination_links_full @project_pages, @project_count %></p>
|
luisf@69
|
17
|
Chris@0
|
18
|
Chris@0
|
19 <% other_formats_links do |f| %>
|
Chris@909
|
20 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
|
Chris@0
|
21 <% end %>
|
Chris@0
|
22
|
Chris@0
|
23 <% html_title(l(:label_project_plural)) -%>
|