annotate .svn/pristine/04/04bafe6e6b402a0f59316ed78a7582dc8951a46f.svn-base @ 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 |
cbb26bc654de |
children |
|
rev |
line source |
Chris@909
|
1 <% content_for :header_tags do %>
|
Chris@909
|
2 <%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
|
Chris@909
|
3 <% end %>
|
Chris@909
|
4
|
Chris@909
|
5 <div class="contextual">
|
Chris@909
|
6 <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') + ' |' if User.current.allowed_to?(:add_project, nil, :global => true) %>
|
Chris@909
|
7 <%= link_to(l(:label_issue_view_all), { :controller => 'issues' }) + ' |' if User.current.allowed_to?(:view_issues, nil, :global => true) %>
|
Chris@909
|
8 <%= link_to(l(:label_overall_spent_time), { :controller => 'time_entries' }) + ' |' if User.current.allowed_to?(:view_time_entries, nil, :global => true) %>
|
Chris@909
|
9 <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }%>
|
Chris@909
|
10 </div>
|
Chris@909
|
11
|
Chris@909
|
12 <h2><%=l(:label_project_plural)%></h2>
|
Chris@909
|
13
|
Chris@909
|
14 <%= render_project_hierarchy(@projects)%>
|
Chris@909
|
15
|
Chris@909
|
16 <% if User.current.logged? %>
|
Chris@909
|
17 <p style="text-align:right;">
|
Chris@909
|
18 <span class="my-project"><%= l(:label_my_projects) %></span>
|
Chris@909
|
19 </p>
|
Chris@909
|
20 <% end %>
|
Chris@909
|
21
|
Chris@909
|
22 <% other_formats_links do |f| %>
|
Chris@909
|
23 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
|
Chris@909
|
24 <% end %>
|
Chris@909
|
25
|
Chris@909
|
26 <% html_title(l(:label_project_plural)) -%>
|