To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / projects / index.html.erb @ 1591:63650ae64bf2

History | View | Annotate | Download (900 Bytes)

1
<% content_for :header_tags do %>
2
    <%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
3
<% end %>
4

    
5
<div class="contextual">
6
    <%= render_project_action_links %>
7
</div>
8

    
9
<h2>
10
<%= l("label_project_all") %>
11
</h2>
12

    
13
<%= render_project_table(@projects) %>
14

    
15
<p class="pagination"><%= pagination_links_full @project_pages, @project_count %></p>
16

    
17

    
18
<% other_formats_links do |f| %>
19
  <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
20
<% end %>
21

    
22
<% content_for :sidebar do %>
23
  <%= form_tag({}, :method => :get) do %>
24
    <h3><%= l(:label_project_plural) %></h3>
25
    <label for="closed"><%= check_box_tag 'closed', 1, params[:closed] %> <%= l(:label_show_closed_projects) %></label>
26
    <p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
27
  <% end %>
28
<% end %>
29

    
30
<% html_title(l(:label_project_plural)) -%>