index.html.erb
31 lines
| 880 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"> | ||
|
r15602 | <%= form_tag({}, :method => :get) do %> | ||
<label for="closed"> | ||||
<%= check_box_tag 'closed', 1, params[:closed], :onchange => "this.form.submit();" %> | ||||
<%= l(:label_show_closed_projects) %> | ||||
</label> | ||||
<% end %> | ||||
<%= 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;"> | ||
|
r15596 | <span class="icon icon-fav 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 | |||
|
r1019 | <% html_title(l(:label_project_plural)) -%> | ||