Mercurial > hg > soundsoftware-site
annotate app/views/projects/index.html.erb @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +0100 |
parents | a1bdbf8a87d5 |
children |
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@1517 | 6 <%= render_project_action_links %> |
Chris@0 | 7 </div> |
Chris@0 | 8 |
chris@124 | 9 <h2> |
chris@124 | 10 <%= l("label_project_all") %> |
chris@124 | 11 </h2> |
chris@124 | 12 |
chris@124 | 13 <%= render_project_table(@projects) %> |
chris@123 | 14 |
chris@123 | 15 <p class="pagination"><%= pagination_links_full @project_pages, @project_count %></p> |
luisf@69 | 16 |
Chris@0 | 17 |
Chris@0 | 18 <% other_formats_links do |f| %> |
Chris@909 | 19 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> |
Chris@0 | 20 <% end %> |
Chris@0 | 21 |
Chris@1115 | 22 <% content_for :sidebar do %> |
Chris@1115 | 23 <%= form_tag({}, :method => :get) do %> |
Chris@1115 | 24 <h3><%= l(:label_project_plural) %></h3> |
Chris@1115 | 25 <label for="closed"><%= check_box_tag 'closed', 1, params[:closed] %> <%= l(:label_show_closed_projects) %></label> |
Chris@1115 | 26 <p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p> |
Chris@1115 | 27 <% end %> |
Chris@1115 | 28 <% end %> |
Chris@1115 | 29 |
Chris@0 | 30 <% html_title(l(:label_project_plural)) -%> |