Mercurial > hg > soundsoftware-site
comparison vendor/plugins/redmine_bibliography/app/views/projects/show.rhtml @ 465:5123e3a1c9cb feature_36
Created the publications box in the project's main page
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 21 Jun 2011 18:11:41 +0100 |
parents | |
children | 7c4b96efa402 |
comparison
equal
deleted
inserted
replaced
464:fbdfec975bfa | 465:5123e3a1c9cb |
---|---|
1 <div class="contextual"> | |
2 <% if User.current.allowed_to?(:add_subprojects, @project) %> | |
3 <%= link_to l(:label_subproject_new), {:controller => 'projects', :action => 'new', :parent_id => @project}, :class => 'icon icon-add' %> | |
4 <% end %> | |
5 </div> | |
6 | |
7 <h2><%=l(:label_overview)%></h2> | |
8 | |
9 <div class="splitcontentleft"> | |
10 <div class="wiki"> | |
11 <%= textilizable @project.description %> | |
12 </div> | |
13 <ul> | |
14 <% unless @project.homepage.blank? %><li><%=l(:field_homepage)%>: <%= auto_link(h(@project.homepage)) %></li><% end %> | |
15 <% if @subprojects.any? %> | |
16 <li><%=l(:label_subproject_plural)%>: | |
17 <%= @subprojects.collect{|p| link_to(h(p), :action => 'show', :id => p)}.join(", ") %></li> | |
18 <% end %> | |
19 <% @project.visible_custom_field_values.each do |custom_value| %> | |
20 <% if !custom_value.value.blank? %> | |
21 <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li> | |
22 <% end %> | |
23 <% end %> | |
24 </ul> | |
25 | |
26 <% if User.current.allowed_to?(:view_issues, @project) %> | |
27 <div class="issues box"> | |
28 <h3><%=l(:label_issue_tracking)%></h3> | |
29 <ul> | |
30 <% for tracker in @trackers %> | |
31 <li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project, | |
32 :set_filter => 1, | |
33 "tracker_id" => tracker.id %>: | |
34 <%= l(:label_x_open_issues_abbr_on_total, :count => @open_issues_by_tracker[tracker].to_i, | |
35 :total => @total_issues_by_tracker[tracker].to_i) %> | |
36 </li> | |
37 <% end %> | |
38 </ul> | |
39 <p> | |
40 <%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 %> | |
41 <% if User.current.allowed_to?(:view_calendar, @project, :global => true) %> | |
42 | <%= link_to(l(:label_calendar), :controller => 'calendars', :action => 'show', :project_id => @project) %> | |
43 <% end %> | |
44 <% if User.current.allowed_to?(:view_gantt, @project, :global => true) %> | |
45 | <%= link_to(l(:label_gantt), :controller => 'gantts', :action => 'show', :project_id => @project) %> | |
46 <% end %> | |
47 </p> | |
48 </div> | |
49 <% end %> | |
50 <%= call_hook(:view_projects_show_left, :project => @project) %> | |
51 </div> | |
52 | |
53 <div class="splitcontentright"> | |
54 | |
55 <%= render :partial => 'bibliography_box' %> | |
56 | |
57 <%= render :partial => 'members_box' %> | |
58 | |
59 <% if @news.any? && authorize_for('news', 'index') %> | |
60 <div class="news box"> | |
61 <h3><%=l(:label_news_latest)%></h3> | |
62 <%= render :partial => 'news/news', :collection => @news %> | |
63 <p><%= link_to l(:label_news_view_all), :controller => 'news', :action => 'index', :project_id => @project %></p> | |
64 </div> | |
65 <% end %> | |
66 <%= call_hook(:view_projects_show_right, :project => @project) %> | |
67 </div> | |
68 | |
69 <% content_for :sidebar do %> | |
70 <% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %> | |
71 <h3><%= l(:label_spent_time) %></h3> | |
72 <p><span class="icon icon-time"><%= l_hours(@total_hours) %></span></p> | |
73 <p><%= link_to(l(:label_details), {:controller => 'timelog', :action => 'index', :project_id => @project}) %> | | |
74 <%= link_to(l(:label_report), {:controller => 'time_entry_reports', :action => 'report', :project_id => @project}) %></p> | |
75 <% end %> | |
76 <%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %> | |
77 <% end %> | |
78 | |
79 <% content_for :header_tags do %> | |
80 <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :key => User.current.rss_key}) %> | |
81 <% end %> | |
82 | |
83 <% html_title(l(:label_overview)) -%> |