annotate app/views/projects/index.html.erb @ 1524:82fac3dcf466
redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Thu, 11 Sep 2014 10:24:38 +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)) -%>
|