+++ /dev/null
-<% if User.current.allowed_to?(:view_time_entries, @project) %>
- <h3><%= l(:label_spent_time) %></h3>
- <% if @total_hours.present? %>
- <p><span class="icon icon-time"><%= l_hours(@total_hours) %></span></p>
- <% end %>
- <p>
- <% if User.current.allowed_to?(:log_time, @project) %>
- <%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> |
- <% end %>
- <%= link_to(l(:label_details), project_time_entries_path(@project)) %> |
- <%= link_to(l(:label_report), report_project_time_entries_path(@project)) %>
- </p>
-<% end %>
-<%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %>
</p>
</div>
<% end %>
+
+ <% if User.current.allowed_to?(:view_time_entries, @project) %>
+ <div class="spent_time box">
+ <h3><%= l(:label_spent_time) %></h3>
+ <% if @total_hours.present? %>
+ <p><%= l_hours(@total_hours) %></p>
+ <% end %>
+ <p>
+ <% if User.current.allowed_to?(:log_time, @project) %>
+ <%= link_to l(:button_log_time), new_project_time_entry_path(@project) %> |
+ <% end %>
+ <%= link_to(l(:label_details), project_time_entries_path(@project)) %> |
+ <%= link_to(l(:label_report), report_project_time_entries_path(@project)) %>
+ </p>
+ </div>
+<% end %>
<%= call_hook(:view_projects_show_left, :project => @project) %>
</div>
</div>
<% content_for :sidebar do %>
- <%= render :partial => 'projects/sidebar' %>
+ <%= call_hook(:view_projects_show_sidebar_bottom, :project => @project) %>
<% end %>
<% content_for :header_tags do %>
div.members h3 { background: url(../images/group.png) no-repeat 0% 50%; padding-left: 20px; }
div.news h3 { background: url(../images/news.png) no-repeat 0% 50%; padding-left: 20px; }
div.projects h3 { background: url(../images/projects.png) no-repeat 0% 50%; padding-left: 20px; }
+div.spent_time h3 { background: url(../images/time.png) no-repeat 0% 50%; padding-left: 20px; }
#watchers select {width: 95%; display: block;}
#watchers a.delete {opacity: 0.4; margin-left: 5px;}