Merge branch 'develop' of 10.0.47.245:/home/trustie2 into develop
This commit is contained in:
commit
ce7af30788
|
@ -49,7 +49,7 @@ class ProjectsController < ApplicationController
|
||||||
# before_filter :authorize, :except => [:new_join, :new_homework, :homework, :statistics, :search, :watcherlist, :index, :list, :new, :create, :copy, :archive, :unarchive, :destroy, :member, :focus, :file,
|
# before_filter :authorize, :except => [:new_join, :new_homework, :homework, :statistics, :search, :watcherlist, :index, :list, :new, :create, :copy, :archive, :unarchive, :destroy, :member, :focus, :file,
|
||||||
# :statistics, :feedback, :course, :enterprise_course, :course_enterprise, :project_respond, :share,
|
# :statistics, :feedback, :course, :enterprise_course, :course_enterprise, :project_respond, :share,
|
||||||
# :show_projects_score, :issue_score_index, :news_score_index, :file_score_index, :code_submit_score_index, :projects_topic_score_index]
|
# :show_projects_score, :issue_score_index, :news_score_index, :file_score_index, :code_submit_score_index, :projects_topic_score_index]
|
||||||
before_filter :authorize, :only => [:sort_project_demo, :show, :settings, :edit, :sort_project_members, :update, :modules, :close, :reopen]
|
before_filter :authorize, :only => [:show, :settings, :edit, :sort_project_members, :update, :modules, :close, :reopen]
|
||||||
before_filter :authorize_global, :only => [:new, :create]
|
before_filter :authorize_global, :only => [:new, :create]
|
||||||
before_filter :require_admin, :only => [ :copy, :archive, :unarchive, :destroy, :calendar]
|
before_filter :require_admin, :only => [ :copy, :archive, :unarchive, :destroy, :calendar]
|
||||||
#by young
|
#by young
|
||||||
|
@ -127,32 +127,39 @@ class ProjectsController < ApplicationController
|
||||||
def index
|
def index
|
||||||
#Modified by nie
|
#Modified by nie
|
||||||
@project_type = params[:project_type]
|
@project_type = params[:project_type]
|
||||||
@limit = 10
|
per_page_option = 10
|
||||||
@project_count = Project.visible.where("project_type = ?", 0).count
|
|
||||||
@project_pages = Paginator.new @project_count, @limit, params['page']
|
@projects_all = Project.active.visible.
|
||||||
if params[:project_sort_type].present?
|
joins("LEFT JOIN #{ProjectStatus.table_name} ON #{Project.table_name}.id = #{ProjectStatus.table_name}.project_id").
|
||||||
case params[:project_sort_type]
|
where("#{Project.table_name}.project_type = ? ", Project::ProjectType_project)
|
||||||
when '0'
|
|
||||||
@projects = @projects = Project.visible.where("project_type = ?", 0).order("created_on desc").offset(@project_pages.offset).limit(@limit).all
|
@project_count = @projects_all.count
|
||||||
@s_type = 0
|
@project_pages = Paginator.new @project_count, per_page_option, params['page']
|
||||||
when '1'
|
|
||||||
@projects = sort_project_demo project_type = 0, order_by="grade desc", @project_pages.offset, @limit
|
|
||||||
@s_type = 1
|
case params[:project_sort_type]
|
||||||
when '2'
|
when '0'
|
||||||
@projects = sort_project_demo project_type = 0, order_by="watchers_count desc", @project_pages.offset, @limit
|
@projects = @projects_all.order("created_on desc")
|
||||||
@s_type = 2
|
@s_type = 0
|
||||||
end
|
when '1'
|
||||||
|
@projects = @projects_all.order("grade desc")
|
||||||
|
@s_type = 1
|
||||||
|
when '2'
|
||||||
|
@projects = @projects_all.order("watchers_count desc")
|
||||||
|
@s_type = 2
|
||||||
else
|
else
|
||||||
@projects = sort_project_demo project_type = 0, order_by="grade desc", @project_pages.offset, @limit
|
@projects = @projects = @projects_all.order("grade desc")
|
||||||
@s_type = 1
|
@s_type = 1
|
||||||
end
|
end
|
||||||
|
@projects = @projects.offset(@project_pages.offset).limit(@project_pages.per_page)
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html {
|
format.html {
|
||||||
render :layout => 'base'
|
render :layout => 'base'
|
||||||
scope = Project
|
# scope = Project
|
||||||
unless params[:closed]
|
# unless params[:closed]
|
||||||
scope = scope.active
|
# scope = scope.active
|
||||||
end
|
# end
|
||||||
}
|
}
|
||||||
format.api {
|
format.api {
|
||||||
# @offset, @limit = api_offset_and_limit
|
# @offset, @limit = api_offset_and_limit
|
||||||
|
@ -168,34 +175,34 @@ class ProjectsController < ApplicationController
|
||||||
|
|
||||||
def course
|
def course
|
||||||
@project_type = params[:project_type]
|
@project_type = params[:project_type]
|
||||||
@limit = 10;
|
per_page_option = 10
|
||||||
@project_count = Project.visible.where("project_type = 1").count
|
|
||||||
@project_pages = Paginator.new @project_count, @limit, params['page']
|
@projects_all = Project.active.visible.
|
||||||
if params[:project_sort_type].present?
|
joins("LEFT JOIN #{ProjectStatus.table_name} ON #{Project.table_name}.id = #{ProjectStatus.table_name}.project_id").
|
||||||
case params[:project_sort_type]
|
where("#{Project.table_name}.project_type = ? ", Project::ProjectType_course)
|
||||||
when '0'
|
|
||||||
@projects = Project.visible.where("project_type = ?", 1).order("created_on desc").offset(@project_pages.offset).limit(@limit).all
|
@project_count = @projects_all.count
|
||||||
@s_type = 0
|
@project_pages = Paginator.new @project_count, per_page_option, params['page']
|
||||||
when '1'
|
|
||||||
@projects = sort_project_demo 1, "course_ac_para desc", @project_pages.offset, @limit
|
case params[:project_sort_type]
|
||||||
@s_type = 1
|
when '0'
|
||||||
when '2'
|
@projects = @projects_all.order("created_on desc")
|
||||||
@projects = sort_project_demo 1, "watchers_count desc", @project_pages.offset, @limit
|
@s_type = 0
|
||||||
@s_type = 2
|
when '1'
|
||||||
end
|
@projects = @projects_all.order("course_ac_para desc")
|
||||||
|
@s_type = 1
|
||||||
|
when '2'
|
||||||
|
@projects = @projects_all.order("watchers_count desc")
|
||||||
|
@s_type = 2
|
||||||
else
|
else
|
||||||
# @projects = sort_project_demo 1, "course_ac_para desc", @project_pages.offset, @limit
|
@s_type = 0
|
||||||
@s_type = 0
|
@projects = @projects_all.order("created_on desc")
|
||||||
@projects = Project.visible.where("project_type = ?", 1).order("created_on desc").offset(@project_pages.offset).limit(@limit).all
|
|
||||||
# @s_type = 0
|
|
||||||
end
|
end
|
||||||
|
@projects = @projects.offset(@project_pages.offset).limit(@project_pages.per_page)
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html {
|
format.html {
|
||||||
render :layout => 'base'
|
render :layout => 'base'
|
||||||
scope = Project
|
|
||||||
unless params[:closed]
|
|
||||||
scope = scope.active
|
|
||||||
end
|
|
||||||
}
|
}
|
||||||
format.api {
|
format.api {
|
||||||
# @offset, @limit = api_offset_and_limit
|
# @offset, @limit = api_offset_and_limit
|
||||||
|
@ -209,16 +216,7 @@ class ProjectsController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def sort_project_demo project_type, order_by, offset, limit
|
def search
|
||||||
#Project.visible.joins(:project_status).where("#{Project.table_name}.project_type = ?", project_type).order(order_by).offset(offset).limit(limit).all
|
|
||||||
Project.visible.find_by_sql("
|
|
||||||
SELECT *
|
|
||||||
FROM projects AS p RIGHT OUTER JOIN (
|
|
||||||
SELECT project_id,grade FROM project_statuses
|
|
||||||
WHERE project_type = #{project_type} ORDER BY #{order_by} LIMIT #{limit} OFFSET #{offset}) AS t ON p.id = t.project_id ")
|
|
||||||
end
|
|
||||||
|
|
||||||
def search
|
|
||||||
#modified by nie
|
#modified by nie
|
||||||
@projects = Project.visible
|
@projects = Project.visible
|
||||||
@projects = @projects.visible.where('project_type = ?', params[:project_type]).like(params[:name]) if params[:name].present?
|
@projects = @projects.visible.where('project_type = ?', params[:project_type]).like(params[:name]) if params[:name].present?
|
||||||
|
@ -462,7 +460,7 @@ class ProjectsController < ApplicationController
|
||||||
project = ProjectInfo.new(:user_id => User.current.id, :project_id => @project.id)
|
project = ProjectInfo.new(:user_id => User.current.id, :project_id => @project.id)
|
||||||
user_grades = UserGrade.create(:user_id => User.current.id, :project_id => @project.id)
|
user_grades = UserGrade.create(:user_id => User.current.id, :project_id => @project.id)
|
||||||
if params[:project][:is_public] == '1' || @course_tag=="1"
|
if params[:project][:is_public] == '1' || @course_tag=="1"
|
||||||
project_status = ProjectStatus.create(:project_id => @project.id, :watchers_count => 0, :changesets_count => 0)
|
project_status = ProjectStatus.create(:project_id => @project.id, :watchers_count => 0, :changesets_count => 0, :project_type => @project.project_type)
|
||||||
end
|
end
|
||||||
@project.members << m
|
@project.members << m
|
||||||
@project.project_infos << project
|
@project.project_infos << project
|
||||||
|
|
|
@ -1500,16 +1500,16 @@ module ApplicationHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_dynamic_nav
|
def render_dynamic_nav
|
||||||
home_link = link_to l(:field_homepage), {:controller => 'welcome', :action => 'index',:host => Setting.forge_domain}
|
home_link = link_to l(:field_homepage), {:controller => 'welcome', :action => 'index'}
|
||||||
course_all_course_link = link_to l(:label_course_all), {:controller => 'projects', :action => 'course', :project_type => 1}
|
course_all_course_link = link_to l(:label_course_all), {:controller => 'projects', :action => 'course', :project_type => 1}
|
||||||
course_teacher_all_link = link_to l(:label_teacher_all), {:controller => 'users', :action => 'index', :role => 'teacher'}
|
course_teacher_all_link = link_to l(:label_teacher_all), {:controller => 'users', :action => 'index', :role => 'teacher'}
|
||||||
courses_link = link_to l(:label_course_practice), {:controller => 'projects', :action => 'course', :project_type => 1, :host=>Setting.course_domain}
|
courses_link = link_to l(:label_course_practice), {:controller => 'projects', :action => 'course', :project_type => 1}
|
||||||
projects_link = link_to l(:label_project_deposit), {:controller => 'projects', :action => 'index', :project_type => 0, :host => Setting.project_domain}
|
projects_link = link_to l(:label_project_deposit), {:controller => 'projects', :action => 'index', :project_type => 0}
|
||||||
users_link = link_to l(:label_software_user), {:controller => 'users', :action => 'index'}
|
users_link = link_to l(:label_software_user), {:controller => 'users', :action => 'index'}
|
||||||
contest_link = link_to l(:label_contest_innovate), {:controller => 'bids', :action => 'contest', :project_type => 1, :host=>Setting.contest_domain}
|
contest_link = link_to l(:label_contest_innovate), {:controller => 'bids', :action => 'contest', :project_type => 1 }
|
||||||
bids_link = link_to l(:label_requirement_enterprise), {:controller => 'bids', :action => 'index'}
|
bids_link = link_to l(:label_requirement_enterprise), {:controller => 'bids', :action => 'index'}
|
||||||
forum_link = link_to l(:label_project_module_forums), {:controller => "forums", :action => "index", :host => Setting.forge_domain}
|
forum_link = link_to l(:label_project_module_forums), {:controller => "forums", :action => "index"}
|
||||||
stores_link = link_to l(:label_stores_index), {:controller => 'stores', :action=> 'index', :host => Setting.forge_domain}
|
stores_link = link_to l(:label_stores_index), {:controller => 'stores', :action=> 'index'}
|
||||||
|
|
||||||
#@nav_dispaly_project_label
|
#@nav_dispaly_project_label
|
||||||
nav_list = Array.new
|
nav_list = Array.new
|
||||||
|
|
|
@ -21,6 +21,10 @@
|
||||||
@nav_dispaly_course_all_label = 1
|
@nav_dispaly_course_all_label = 1
|
||||||
@nav_dispaly_teacher_all_label = 1
|
@nav_dispaly_teacher_all_label = 1
|
||||||
@nav_dispaly_forum_label = 1
|
@nav_dispaly_forum_label = 1
|
||||||
|
elsif (realUrl.match(/forge\.trustie\.net/))
|
||||||
|
@nav_dispaly_project_label = 1
|
||||||
|
@nav_dispaly_user_label = 1
|
||||||
|
@nav_dispaly_forum_label = 1
|
||||||
else
|
else
|
||||||
@nav_dispaly_course_label = 1
|
@nav_dispaly_course_label = 1
|
||||||
@nav_dispaly_project_label = 1
|
@nav_dispaly_project_label = 1
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<ul>
|
<ul>
|
||||||
<%= pagination_links_full @project_pages %>
|
<%= pagination_links_full @project_pages, @project_count %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<ul>
|
<ul>
|
||||||
<%= pagination_links_full @project_pages %>
|
<%= pagination_links_full @project_pages, @project_count %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<%= form_tag(:controller => 'projects', :action => "search", :method => :get) do %>
|
||||||
|
<div class="project-search" style="float: right">
|
||||||
|
<%= text_field_tag 'name', params[:name], placeholder:'请输入要搜索的关键字', :size => 30 %>
|
||||||
|
<%= hidden_field_tag 'project_type', project_type %>
|
||||||
|
<%= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
|
@ -95,7 +95,7 @@
|
||||||
<span class="font_welcome_trustie"><%= l(:label_welcome_trustie) %> </span><span class="font_welcome_tdescription">, <%= l(:label_welcome_trustie_description) %></span>
|
<span class="font_welcome_trustie"><%= l(:label_welcome_trustie) %> </span><span class="font_welcome_tdescription">, <%= l(:label_welcome_trustie_description) %></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="search-bar">
|
<div class="search-bar">
|
||||||
<%= render :partial => "search_bar"%>
|
<%= render :partial => "search_project", :locals => {:project_type => 0}%>
|
||||||
</div>
|
</div>
|
||||||
<div style="clear: both;"></div>
|
<div style="clear: both;"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -107,7 +107,58 @@
|
||||||
<%= stylesheet_link_tag 'welcome' %>
|
<%= stylesheet_link_tag 'welcome' %>
|
||||||
|
|
||||||
|
|
||||||
<div class="left" style="float: left; min-height: 470px; width: 48%;">
|
|
||||||
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject">
|
||||||
|
<h3 style="margin-left: 5px; color: #e8770d;"><strong>热门项目</strong></h3>
|
||||||
|
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", { :controller => 'projects', :action => 'index', :project_type => 0, :host => Setting.project_domain}, :target => "_blank" %></span>
|
||||||
|
<div class="d-p-projectlist-box">
|
||||||
|
<ul class="d-p-projectlist">
|
||||||
|
<% find_all_hot_project.map do |project| break if(project == find_all_hot_project[10]) %>
|
||||||
|
<li style="background-image:none;">
|
||||||
|
<div style="float: left;">
|
||||||
|
<%= image_tag url_to_avatar(project), :class => "avatar-4" %>
|
||||||
|
</div>
|
||||||
|
<div style="float: left; margin-left: 10px; width: 360px;">
|
||||||
|
<p class="layout">
|
||||||
|
<span style="display: inline-block; width: 250px;"><%= link_to( project.name, :controller => 'projects', :action => 'show', :host=> Setting.project_domain, :id => project.id, :class => "d-g-blue d-p-project-name", :title => "#{project.name}", :target => "_blank" )%></span>
|
||||||
|
<%= content_tag "span", show_grade(project),
|
||||||
|
:style => "cursor: pointer; display: inline-block; float: right; color: #ec6300; ",
|
||||||
|
:title => "项目得分,综合考虑了项目的各项活动,反映了该项目的活跃程度",
|
||||||
|
:class => "tooltip",
|
||||||
|
:id => "tooltip-#{project.id}" %>
|
||||||
|
</p>
|
||||||
|
<p class="layout-1" >
|
||||||
|
<%= content_tag "span", project.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => project.description %>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
||||||
|
<ul class="user-welcome-message-list">
|
||||||
|
<h3 style="color: rgb(21, 188, 207)"><strong>用户动态</strong></h3>
|
||||||
|
<span style="margin-top: -30px;float: right; display: block;"><%= link_to "更多>>", { :controller => 'users', :action => 'index'}, :target => "_blank" %></span>
|
||||||
|
<div class="user-message-box-list">
|
||||||
|
<% find_all_activities.each do |event| %>
|
||||||
|
<li style="display: block;height:60px; padding-bottom: 4px;">
|
||||||
|
<div class="inner-right" style="float: left; height: 100%; ">
|
||||||
|
<%= image_tag url_to_avatar(event.event_author), :class => "avatar-3" %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="inner-right" style="float: right; width:86%; height: 100%; ">
|
||||||
|
<span style="color: green;"><%= link_to event.event_author, (user_path(event.event_author) if event.event_author), :style => "color:green;", :target => "_blank" %></span><%= show_user_content event %>
|
||||||
|
<p style="margin-top: 4px;"><span style="color: rgb(172, 174, 177)"><%= l(:field_updated_on) %><%= time_tag_welcome event.event_datetime %>前</span> <span style="float: right; color: rgb(172, 174, 177);"><%= show_event_reply event %></span></p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
||||||
<ul class="welcome-message-list">
|
<ul class="welcome-message-list">
|
||||||
<div class="forum-topic" style="height: 25px; width: 98%; margin-left: 6px;">
|
<div class="forum-topic" style="height: 25px; width: 98%; margin-left: 6px;">
|
||||||
<h3 style="color: rgb(21, 188, 207);"><strong>贴吧动态</strong></h3>
|
<h3 style="color: rgb(21, 188, 207);"><strong>贴吧动态</strong></h3>
|
||||||
|
@ -133,88 +184,8 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="right" style="float: right; min-height: 470px; width: 48%; ">
|
|
||||||
<ul class="user-welcome-message-list">
|
|
||||||
<h3 style="color: rgb(21, 188, 207)"><strong>用户动态</strong></h3>
|
|
||||||
<span style="margin-top: -30px;float: right; display: block;"><%= link_to "更多>>", { :controller => 'users', :action => 'index'}, :target => "_blank" %></span>
|
|
||||||
<div class="user-message-box-list">
|
|
||||||
<% find_all_activities.each do |event| %>
|
|
||||||
<li style="display: block;height:60px; padding-bottom: 4px;">
|
|
||||||
<div class="inner-right" style="float: left; height: 100%; ">
|
|
||||||
<%= image_tag url_to_avatar(event.event_author), :class => "avatar-3" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="inner-right" style="float: right; width:86%; height: 100%; ">
|
<!-- <div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
||||||
<span style="color: green;"><%= link_to event.event_author, (user_path(event.event_author) if event.event_author), :style => "color:green;", :target => "_blank" %></span><%= show_user_content event %>
|
|
||||||
<p style="margin-top: 4px;"><span style="color: rgb(172, 174, 177)"><%= l(:field_updated_on) %><%= time_tag_welcome event.event_datetime %>前</span> <span style="float: right; color: rgb(172, 174, 177);"><%= show_event_reply event %></span></p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject">
|
|
||||||
<h3 style="margin-left: 5px; color: #e8770d;"><strong>热门项目</strong></h3>
|
|
||||||
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", { :controller => 'projects', :action => 'index', :project_type => 0, :host => Setting.project_domain}, :target => "_blank" %></span>
|
|
||||||
<div class="d-p-projectlist-box">
|
|
||||||
<ul class="d-p-projectlist">
|
|
||||||
<% find_all_hot_project.map do |project| break if(project == find_all_hot_project[15]) %>
|
|
||||||
<li style="background-image:none;">
|
|
||||||
<div style="float: left;">
|
|
||||||
<%= image_tag url_to_avatar(project), :class => "avatar-4" %>
|
|
||||||
</div>
|
|
||||||
<div style="float: left; margin-left: 10px; width: 360px;">
|
|
||||||
<p class="layout">
|
|
||||||
<span style="display: inline-block; width: 250px;"><%= link_to( project.name, :controller => 'projects', :action => 'show', :host=> Setting.project_domain, :id => project.id, :class => "d-g-blue d-p-project-name", :title => "#{project.name}", :target => "_blank" )%></span>
|
|
||||||
<%= content_tag "span", show_grade(project),
|
|
||||||
:style => "cursor: pointer; display: inline-block; float: right; color: #ec6300; ",
|
|
||||||
:title => "项目得分,综合考虑了项目的各项活动,反映了该项目的活跃程度",
|
|
||||||
:class => "tooltip",
|
|
||||||
:id => "tooltip-#{project.id}" %>
|
|
||||||
</p>
|
|
||||||
<p class="layout-1" >
|
|
||||||
<%= content_tag "span", project.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => project.description %>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
|
||||||
<h3 style="margin-left: 5px; color: #e8770d;"><strong>热门课程</strong></h3>
|
|
||||||
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'projects', :action => 'course', :project_type => 1, :project_sort_type => 1, :host => Setting.course_domain}, :target => "_blank" %></span>
|
|
||||||
<div class="d-p-projectlist-box">
|
|
||||||
<ul class="d-p-projectlist">
|
|
||||||
<% find_all_hot_course.map do |project| break if(project == find_all_hot_course[5]) %>
|
|
||||||
<li style="background-image:none;">
|
|
||||||
<div style="float: left;">
|
|
||||||
<% if get_avatar?(project)%>
|
|
||||||
<%= image_tag(url_to_avatar(project), :class => "avatar-4") %>
|
|
||||||
<% else %>
|
|
||||||
<%= image_tag('../images/avatars/Project/course.jpg', :class => "avatar-4") %>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
<div style="float: left; margin-left: 10px; width: 360px;">
|
|
||||||
<p class="layout">
|
|
||||||
<%= link_to( project.name, :controller => 'projects', :action => 'show', :id => project.id, :host => Setting.course_domain, :class => "d-g-blue d-p-project-name",:title => "#{project.name}", :target => "_blank" )%>
|
|
||||||
<span style="cursor: pointer; display: inline-block; float: right; color: #ec6300; white-space: nowrap;">学生人数:<%= link_to "#{studentCount(project)}", project_member_path(project, :role => 2) ,:course =>'1', :target => "_blank" %></span>
|
|
||||||
</p>
|
|
||||||
<p class="layout-1" >
|
|
||||||
<%= content_tag "span", project.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => project.description %>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
|
||||||
<h3 style="margin-left: 5px; color: color: (51, 119, 51);"><strong>热门竞赛</strong></h3>
|
<h3 style="margin-left: 5px; color: color: (51, 119, 51);"><strong>热门竞赛</strong></h3>
|
||||||
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'bids', :action => 'contest', :project_type => 1, :host => Setting.contest_domain}, :target => "_blank" %></span>
|
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'bids', :action => 'contest', :project_type => 1, :host => Setting.contest_domain}, :target => "_blank" %></span>
|
||||||
<div class="d-p-projectlist-box">
|
<div class="d-p-projectlist-box">
|
||||||
|
@ -232,9 +203,9 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
<!-- <div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
||||||
<h3 style="margin-left: 5px; color: color: (51, 119, 51);"><strong>热门众包</strong></h3>
|
<h3 style="margin-left: 5px; color: color: (51, 119, 51);"><strong>热门众包</strong></h3>
|
||||||
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'bids', :action => 'index'}, :target => "_blank" %></span>
|
<span style="margin-top: -20px;float: right; display: block;"><%= link_to "更多>>", {:controller => 'bids', :action => 'index'}, :target => "_blank" %></span>
|
||||||
<div class="d-p-projectlist-box">
|
<div class="d-p-projectlist-box">
|
||||||
|
@ -252,7 +223,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -265,9 +265,9 @@ end
|
||||||
|
|
||||||
Redmine::MenuManager.map :account_menu do |menu|
|
Redmine::MenuManager.map :account_menu do |menu|
|
||||||
menu.push :login, {:controller => 'account', :action => 'login', :host => Setting.forge_domain}, :if => Proc.new { !User.current.logged? }
|
menu.push :login, {:controller => 'account', :action => 'login', :host => Setting.forge_domain}, :if => Proc.new { !User.current.logged? }
|
||||||
menu.push :register, {:controller => 'account', :action => 'register', :host => Setting.forge_domain}, :if => Proc.new { !User.current.logged? && Setting.self_registration? }
|
menu.push :register, {:controller => 'account', :action => 'register'}, :if => Proc.new { !User.current.logged? && Setting.self_registration? }
|
||||||
# menu.push :my_account, { :controller => 'my', :action => 'account' }, :if => Proc.new { User.current.logged? }
|
# menu.push :my_account, { :controller => 'my', :action => 'account' }, :if => Proc.new { User.current.logged? }
|
||||||
menu.push :logout, {:controller => 'account', :action => 'logout', :host => Setting.forge_domain}, :html => {:method => 'post'}, :if => Proc.new { User.current.logged? }
|
menu.push :logout, {:controller => 'account', :action => 'logout'}, :html => {:method => 'post'}, :if => Proc.new { User.current.logged? }
|
||||||
end
|
end
|
||||||
########fq
|
########fq
|
||||||
Redmine::MenuManager.map :bid_menu do |menu|
|
Redmine::MenuManager.map :bid_menu do |menu|
|
||||||
|
|
Loading…
Reference in New Issue