index.html.erb
33 lines
| 986 B
| text/plain
|
TextLexer
|
r3662 | <% content_for :header_tags do %> | ||
<%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %> | ||||
<% end %> | ||||
|
r1213 | <div class="contextual"> | ||
|
r12711 | <%= render_project_action_links %> | ||
|
r1213 | </div> | ||
|
r11860 | <h2><%= l(:label_project_plural) %></h2> | ||
|
r2 | |||
|
r10006 | <div id="projects-index"> | ||
|
r11860 | <%= render_project_hierarchy(@projects) %> | ||
|
r10006 | </div> | ||
|
r330 | |||
|
r663 | <% if User.current.logged? %> | ||
|
r1451 | <p style="text-align:right;"> | ||
|
r2302 | <span class="my-project"><%= l(:label_my_projects) %></span> | ||
|
r1451 | </p> | ||
|
r457 | <% end %> | ||
|
r951 | |||
|
r2331 | <% other_formats_links do |f| %> | ||
|
r7111 | <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> | ||
|
r2331 | <% end %> | ||
|
r1451 | |||
|
r9700 | <% content_for :sidebar do %> | ||
<%= form_tag({}, :method => :get) do %> | ||||
<h3><%= l(:label_project_plural) %></h3> | ||||
<label for="closed"><%= check_box_tag 'closed', 1, params[:closed] %> <%= l(:label_show_closed_projects) %></label> | ||||
<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p> | ||||
<% end %> | ||||
<% end %> | ||||
|
r1019 | <% html_title(l(:label_project_plural)) -%> | ||