OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/app/views/my_projects_overviews/index.html.erb

67 lines
2.8 KiB

13 years ago
<div class="contextual">
<%=
context_links = []
if User.current.allowed_to?(:add_subprojects, project)
13 years ago
context_links << link_to(l(:label_subproject_new),
{ :controller => 'projects',
:action => 'new',
:parent_id => project },
:class => 'icon icon-add')
13 years ago
end
if User.current.allowed_to?(:edit_project, project)
13 years ago
context_links << link_to(l(:label_personalize_page),
{ :action => 'page_layout' },
:class => 'icon icon-edit')
13 years ago
end
context_links.join("&nbsp;&nbsp;&nbsp;").html_safe
13 years ago
%>
</div>
<h2><%=l(:label_overview)%></h2>
<% ['top', 'left', 'right'].each do |position| %>
<div id="list-<%= position %>" class="splitcontent<%= position %>">
<% blocks[position].each do |b| %>
13 years ago
<div class="mypage-box">
<div class="wiki">
<% if MyProjectsOverviewsController::BLOCKS.keys.include? b %>
<%= render :partial => "my_projects_overviews/blocks/#{b}" %>
<% elsif b.respond_to? :to_ary %>
<%= render :partial => "my_projects_overviews/blocks/textilizable",
:locals => { :project => project,
:user => user,
:block_title => b[1],
:textile => b.last } %>
<% end %>
</div>
13 years ago
</div>
<% end if blocks[position] %>
13 years ago
</div>
<% end %>
<%= context_menu :controller => 'issues', :action => 'context_menu' %>
<% content_for :sidebar do %>
<% if total_hours.present? %>
13 years ago
<h3><%= l(:label_spent_time) %></h3>
<p><span class="icon icon-time"><%= l_hours(total_hours) %></span></p>
13 years ago
<p>
<%= link_to(l(:label_details), {:controller => 'timelog', :action => 'index', :project_id => project}) %> |
<%= link_to(l(:label_report), {:controller => 'time_entry_reports', :action => 'report', :project_id => project}) %>
13 years ago
<% if authorize_for('timelog', 'new') %>
| <%= link_to l(:button_log_time), {:controller => 'timelog', :action => 'new', :project_id => project} %>
13 years ago
<% end %>
</p>
<% end %>
<%= call_hook(:view_projects_show_sidebar_bottom, :project => project) %>
13 years ago
<% end %>
<% content_for :header_tags do %>
<%= javascript_include_tag "my_project_page/my_project_page", :plugin => 'chiliproject_my_project_page' %>
<%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :key => User.current.rss_key}) %>
<%= stylesheet_link_tag "my_project_page/my_projects_overview", :plugin => "chiliproject_my_project_page", :media => 'all' %>
13 years ago
<% end %>
<% html_title(l(:label_overview)) -%>