##// END OF EJS Templates
Rails3: view: use html_safe for subprojects at projects/show.html.erb...
Toshi MARUYAMA -
r7468:a09da046ec12
parent child
Show More
@@ -1,80 +1,80
1 1 <div class="contextual">
2 2 <% if User.current.allowed_to?(:add_subprojects, @project) %>
3 3 <%= link_to l(:label_subproject_new), {:controller => 'projects', :action => 'new', :parent_id => @project}, :class => 'icon icon-add' %>
4 4 <% end %>
5 5 </div>
6 6
7 7 <h2><%=l(:label_overview)%></h2>
8 8
9 9 <div class="splitcontentleft">
10 10 <div class="wiki">
11 11 <%= textilizable @project.description %>
12 12 </div>
13 13 <ul>
14 14 <% unless @project.homepage.blank? %><li><%=l(:field_homepage)%>: <%= auto_link(h(@project.homepage)) %></li><% end %>
15 15 <% if @subprojects.any? %>
16 16 <li><%=l(:label_subproject_plural)%>:
17 <%= @subprojects.collect{|p| link_to(h(p), :action => 'show', :id => p)}.join(", ") %></li>
17 <%= @subprojects.collect{|p| link_to(h(p), :action => 'show', :id => p)}.join(", ").html_safe %></li>
18 18 <% end %>
19 19 <% @project.visible_custom_field_values.each do |custom_value| %>
20 20 <% if !custom_value.value.blank? %>
21 21 <li><%=h custom_value.custom_field.name %>: <%=h show_value(custom_value) %></li>
22 22 <% end %>
23 23 <% end %>
24 24 </ul>
25 25
26 26 <% if User.current.allowed_to?(:view_issues, @project) %>
27 27 <div class="issues box">
28 28 <h3><%=l(:label_issue_tracking)%></h3>
29 29 <ul>
30 30 <% for tracker in @trackers %>
31 31 <li><%= link_to h(tracker.name), :controller => 'issues', :action => 'index', :project_id => @project,
32 32 :set_filter => 1,
33 33 "tracker_id" => tracker.id %>:
34 34 <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i,
35 35 :total => @total_issues_by_tracker[tracker].to_i) %>
36 36 </li>
37 37 <% end %>
38 38 </ul>
39 39 <p>
40 40 <%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %>
41 41 <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %>
42 42 | <%= link_to(l(:label_calendar), :controller => 'calendars', :action => 'show', :project_id => @project) %>
43 43 <% end %>
44 44 <% if User.current.allowed_to?(:view_gantt, @project, :global => true) %>
45 45 | <%= link_to(l(:label_gantt), :controller => 'gantts', :action => 'show', :project_id => @project) %>
46 46 <% end %>
47 47 </p>
48 48 </div>
49 49 <% end %>
50 50 <%= call_hook(:view_projects_show_left, :project => @project) %>
51 51 </div>
52 52
53 53 <div class="splitcontentright">
54 54 <%= render :partial => 'members_box' %>
55 55
56 56 <% if @news.any? && authorize_for('news', 'index') %>
57 57 <div class="news box">
58 58 <h3><%=l(:label_news_latest)%></h3>
59 59 <%= render :partial => 'news/news', :collection => @news %>
60 60 <p><%= link_to l(:label_news_view_all), :controller => 'news', :action => 'index', :project_id => @project %></p>
61 61 </div>
62 62 <% end %>
63 63 <%= call_hook(:view_projects_show_right, :project => @project) %>
64 64 </div>
65 65
66 66 <% content_for :sidebar do %>
67 67 <% if @total_hours.present? %>
68 68 <h3><%= l(:label_spent_time) %></h3>
69 69 <p><span class="icon icon-time"><%= l_hours(@total_hours) %></span></p>
70 70 <p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'index', :project_id => @project}) %> |
71 71 <%= link_to(l(:label_report), {:controller => 'time_entry_reports', :action => 'report', :project_id => @project}) %></p>
72 72 <% end %>
73 73 <%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %>
74 74 <% end %>
75 75
76 76 <% content_for :header_tags do %>
77 77 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :key => User.current.rss_key}) %>
78 78 <% end %>
79 79
80 80 <% html_title(l(:label_overview)) -%>
General Comments 0
You need to be logged in to leave comments. Login now