2013-08-30 09:34:21 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<title><%= h html_title %></title>
|
|
|
|
|
<meta name="description" content="<%= Redmine::Info.app_name %>" />
|
|
|
|
|
<meta name="keywords" content="issue,bug,tracker" />
|
|
|
|
|
<%= csrf_meta_tag %>
|
|
|
|
|
<%= favicon %>
|
|
|
|
|
<%= stylesheet_link_tag 'jquery/jquery-ui-1.9.2', 'application', :media => 'all' %>
|
|
|
|
|
<%= stylesheet_link_tag 'rtl', :media => 'all' if l(:direction) == 'rtl' %>
|
|
|
|
|
<%= javascript_heads %>
|
|
|
|
|
<%= heads_for_theme %>
|
|
|
|
|
<%= call_hook :view_layouts_base_html_head %>
|
|
|
|
|
<!-- page specific tags -->
|
|
|
|
|
<%= yield :header_tags -%>
|
|
|
|
|
</head>
|
|
|
|
|
<!--add by huang-->
|
|
|
|
|
<body class="<%= h body_css_classes %>">
|
|
|
|
|
<div id="wrapper">
|
|
|
|
|
<div id="wrapper2">
|
|
|
|
|
<div id="wrapper3">
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<% if session[:enterprise_college] == 2 %>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<%= render :partial => 'layouts/base_enterprise_header'%>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<% elsif session[:enterprise_college] == 1 %>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<%= render :partial => 'layouts/base_college_header'%>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<% else %>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<%= render :partial => 'layouts/base_header'%>
|
2013-09-30 09:42:13 +08:00
|
|
|
|
<% end %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
|
|
|
|
|
<div id="main">
|
|
|
|
|
<!--project page-->
|
|
|
|
|
<div id="sidebar">
|
|
|
|
|
<div class="spaceleft">
|
|
|
|
|
<!--informations-->
|
|
|
|
|
<div class="inf_user_image">
|
|
|
|
|
<% @project = Project.find_by_id(@project.id)%>
|
2013-09-13 21:29:58 +08:00
|
|
|
|
<% @course = Course.find_by_extra(@project.identifier)%>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<td> <% if(@project.project_type==1)%>
|
|
|
|
|
|
|
|
|
|
<% if get_avatar?(@project)%>
|
|
|
|
|
<%= link_to image_tag(url_to_avatar(@project), :class => "avatar2"), project_path(@project) %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to image_tag('../images/avatars/Project/course.jpg', :class => "avatar2"), project_path(@project)%>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= link_to image_tag(url_to_avatar(@project), :class => "avatar2") %>
|
|
|
|
|
<% end %> </td>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<td align="center">
|
|
|
|
|
<div class="info_font" style=" word-wrap: break-word; word-break: break-all">
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<%= @project.name %>
|
|
|
|
|
</div> <% unless @course.teacher.id == User.current.id%>
|
2013-09-16 08:49:39 +08:00
|
|
|
|
<%= join_in_course(@project, User.current)%>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<% end %> </td>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
</tr>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
</table>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--parameter-->
|
|
|
|
|
<div class="user_fans">
|
2013-10-07 18:55:19 +08:00
|
|
|
|
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<table width="240" border="0">
|
|
|
|
|
<tr align="center" width="80px">
|
|
|
|
|
<% files_count = @project.attachments.count %>
|
|
|
|
|
<% @project.versions.each do |version| %>
|
|
|
|
|
<% files_count += version.attachments.count %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<td class="font_index"><%= link_to "#{@project.members.count}", project_member_path(@project) ,:course =>'1'%></td>
|
|
|
|
|
|
|
|
|
|
<td class="font_index"><%= link_to files_count, project_files_path(@project) %></td>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<tr class="font_aram">
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<td align="center" width="80px"> <%= "成员" %></td>
|
|
|
|
|
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<td align="center" width="80px"><%= l(:label_course_data) %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
|
</div>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<!--info-->
|
|
|
|
|
|
|
|
|
|
<div class="inf_user_context">
|
|
|
|
|
<table style="font-family:微软雅黑" >
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" style="padding-left: 8px;"><%= l(:label_main_teacher) %></td><td class="font_lighter_sidebar"><%= @course.teacher.lastname+@course.teacher.firstname %></td>
|
|
|
|
|
</tr>
|
2013-10-08 22:12:17 +08:00
|
|
|
|
|
|
|
|
|
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<tr>
|
2013-10-08 22:12:17 +08:00
|
|
|
|
<td valign="top" style="padding-left: 8px;"><%= l(:label_main_term) %></td><td class="font_lighter_sidebar"><%= @course.time %> -- <%= @course.term %></td>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
</tr>
|
2013-09-30 11:02:04 +08:00
|
|
|
|
<!-- end -->
|
|
|
|
|
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<% unless @course.teacher.user_extensions.nil?%>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" style="padding-left: 8px;"><%= l(:label_teacher_work_unit) %></td><td class="font_lighter_sidebar"><%= @course.teacher.user_extensions.occupation %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% else %>
|
|
|
|
|
<tr>
|
|
|
|
|
<td valign="top" style="padding-left: 8px;"><%= l(:label_teacher_work_unit) %></td><td class="font_lighter_sidebar"><%= l(:field_course_un) %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% end %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
|
2013-10-07 18:55:19 +08:00
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="user_underline"></div>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<!--description-->
|
|
|
|
|
<div class="inf_user_context">
|
|
|
|
|
<div class="font_title_left">
|
|
|
|
|
<%= l(:label_project_overview) %>
|
|
|
|
|
</div>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<div style="padding-bottom: 8px">
|
2013-09-14 17:25:57 +08:00
|
|
|
|
<% if @project.description.size>0 %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<div class="font_lighter_sidebar">
|
2013-10-07 18:55:19 +08:00
|
|
|
|
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<%= textilizable @project.description %>
|
|
|
|
|
</div>
|
2013-09-14 17:25:57 +08:00
|
|
|
|
<% else %>
|
|
|
|
|
<div class="font_lighter_sidebar">
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<%= l(:label_course_description_no) %>
|
2013-09-14 17:25:57 +08:00
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<div class="created_on_project">
|
2013-09-14 17:25:57 +08:00
|
|
|
|
<strong style="color: #068d9c"><%= l(:label_create_time) %>:</strong><%= format_time(@project.created_on) %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
|
</div>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<!--tags-->
|
|
|
|
|
|
|
|
|
|
<div class="user_fans">
|
|
|
|
|
<!-- added by william -for tag -->
|
|
|
|
|
<div class="user_tags">
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<div id="tags">
|
|
|
|
|
<%= render :partial => 'tags/tag', :locals => {:obj => @project,:object_flag => "2"}%>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
</div>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
</div>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
</div>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
|
|
|
|
|
<div class="user_underline"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<div id="content">
|
2013-09-12 10:41:15 +08:00
|
|
|
|
<div class="tabs_new">
|
2013-08-30 09:34:21 +08:00
|
|
|
|
<ul>
|
2013-10-07 18:55:19 +08:00
|
|
|
|
<li>
|
|
|
|
|
<%= link_to l(:label_course_overview), project_path(@project), :class => link_class(:overview)%>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to l(:label_homework), {:controller => 'projects', :action => 'homework'}, :class => link_class('Homework')%>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to l(:label_course_file), project_files_path(@project), :class => link_class(:files)%>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to l(:label_course_news), {:controller => 'news', :action => 'index', :project_id => @project}, :class => link_class(:news)%>
|
|
|
|
|
</li>
|
|
|
|
|
<!-- <li><%= link_to(l(:label_course_repository), {:controller => 'repositories', :action => 'show', :id => @project, :repository_id => nil, :path => nil, :rev => nil, :course => 1 })%></li> -->
|
|
|
|
|
<% if User.current.logged? && (User.current.admin? || (!Member.where('user_id = ? and project_id = ?', User.current.id, @project.id).first.nil? && (Member.where('user_id = ? and project_id = ?', User.current.id, @project.id).first.roles&Role.where('id = ? or id = ?', 3, 7)).size >0))%>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to l(:label_course_settings), {:controller => 'projects', :action => 'settings', :id => @project}, :class => link_class(:settings)%>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<% end %>
|
2013-08-30 09:34:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
<%= yield %>
|
|
|
|
|
<%= call_hook :view_layouts_base_content %>
|
|
|
|
|
<div style="clear:both;"></div>
|
|
|
|
|
<%= render_flash_messages %>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<%= render :partial => 'layouts/base_footer'%>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="ajax-indicator" style="display:none;">
|
|
|
|
|
<span><%= l(:label_loading) %></span>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="ajax-modal" style="display:none;"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<%= call_hook :view_layouts_base_body_bottom %>
|
|
|
|
|
</body>
|
2013-09-14 09:51:26 +08:00
|
|
|
|
</html>
|