2013-08-10 19:58:36 +08:00
|
|
|
|
<!--add by huang-->
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<div style="height:280px;">
|
2013-11-27 16:40:47 +08:00
|
|
|
|
<div class="welcome_left">
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<table width="388px">
|
|
|
|
|
<tr><td><span class="font_welcome_trustie"><%= l(:label_welcome_trustie) %> </span><span class="font_welcome_tdescription">, <%= l(:label_welcome_trustie_description) %></span></td></tr>
|
|
|
|
|
</table>
|
2013-08-12 10:25:23 +08:00
|
|
|
|
</div>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<td> <%= call_hook :view_account_login_top %>
|
2013-08-12 10:25:23 +08:00
|
|
|
|
<div id="login-form_new">
|
|
|
|
|
<%= form_tag(signin_path) do %>
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<%= back_url_hidden_field_tag if is_logout? %>
|
|
|
|
|
<% unless User.current.logged? %> <!--modified by young-->
|
2013-11-27 16:40:47 +08:00
|
|
|
|
<table >
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<tr>
|
|
|
|
|
<td align="right"><label for="username"><%= l(:label_username) %></label></td>
|
|
|
|
|
<td align="left"><%= text_field_tag 'username', params[:username], :tabindex => '1' %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="right"><label for="password"><%= l(:label_password) %></label></td>
|
|
|
|
|
<td align="left"><%= password_field_tag 'password', nil, :tabindex => '2' %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% if Setting.openid? %>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="right"><label for="openid_url"><%= l(:field_identity_url)%></label></td>
|
|
|
|
|
<td align="left"><%= text_field_tag "openid_url", nil, :tabindex => '3' %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<% end %>
|
|
|
|
|
<tr>
|
|
|
|
|
<td></td>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<td align="left"> <% if Setting.autologin? %> <label for="autologin"><%= check_box_tag 'autologin', 1, false, :tabindex => 4 %> <%= l(:label_stay_logged_in) %></label> <% end %> </td>
|
2013-11-21 17:11:55 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<td align="left"> <% if Setting.lost_password? %>
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<%= link_to l(:label_password_lost), lost_password_path %>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<% end %> </td>
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<td align="right">
|
|
|
|
|
<input type="submit" name="login" value="<%= l(:button_login)%> »" tabindex="5"/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2013-11-27 16:40:47 +08:00
|
|
|
|
<% else %>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<div>
|
|
|
|
|
<!--info-->
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<table width="200" border="0">
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" align="center" class="font_welcome_Cdescription" ><%= l(:label_welcome) %> <strong class="font_small_watch" style=" word-wrap: break-word; word-break: break-all"><%=link_to User.current.lastname<<User.current.firstname, user_path(User.current) %></strong> <%= l(:label_join) %></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<td rowspan="2" style="padding-left: 20px"><%= image_tag(url_to_avatar(User.current), :class => 'avatar') %></td>
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<td><strong class="font_small_watch"><%= link_to l(:label_user_watcher)+"("+User.watched_by(User.current).count.to_s+")", user_path(User.current) %></strong> 
|
|
|
|
|
<strong class="font_small_watch"><%=link_to l(:label_x_user_fans, :count => User.current.watcher_users(User.current.id).count)+"("+User.current.watcher_users(User.current.id).count.to_s+")", user_path(User.current) %></strong></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="left"><% unless User.current.memberships.empty? %>
|
|
|
|
|
<%= l(:label_x_welcome_participate, :count => User.current.memberships.count) %> <strong class="font_small_watch"><%= link_to User.current.memberships.count, {:controller => 'users', :action => 'user_projects', :id => User.current} %></strong> <%= l(:label_welcome_participate_project)%>
|
|
|
|
|
<% end %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2013-11-27 16:40:47 +08:00
|
|
|
|
</table>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<!-- end -->
|
|
|
|
|
</div>
|
2013-08-12 10:25:23 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
</div> <%= call_hook :view_account_login_bottom %>
|
2013-08-12 10:25:23 +08:00
|
|
|
|
|
|
|
|
|
<% if params[:username].present? %>
|
|
|
|
|
<%= javascript_tag "$('#password').focus();" %>
|
|
|
|
|
<% else %>
|
|
|
|
|
<%= javascript_tag "$('#username').focus();" %>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<% end %> </td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
2013-11-27 16:40:47 +08:00
|
|
|
|
</div>
|
2013-08-12 10:25:23 +08:00
|
|
|
|
<!--model-->
|
2013-08-16 22:53:28 +08:00
|
|
|
|
|
|
|
|
|
<!-- fq -->
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
|
|
|
function clearInfo(id, content) {
|
|
|
|
|
var text = $('#' + id);
|
|
|
|
|
if (text.val() == content) {
|
|
|
|
|
$('#' + id).val('');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showInfo(id, content) {
|
|
|
|
|
var text = $('#' + id);
|
|
|
|
|
if (text.val() == '') {
|
|
|
|
|
$('#' + id).val(content);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2013-11-22 14:34:05 +08:00
|
|
|
|
<!-- info display block -->
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<%= stylesheet_link_tag 'welcome' %>
|
|
|
|
|
<div class="body_resize">
|
2013-11-27 15:37:43 +08:00
|
|
|
|
|
2013-11-28 16:00:53 +08:00
|
|
|
|
<div class="left" style="float: left; height: 445px; width: 50%;">
|
2013-11-28 17:22:24 +08:00
|
|
|
|
<ul class="welcome-message-list" style="width: 90%; ">
|
2013-11-27 15:37:43 +08:00
|
|
|
|
<h3 style="">论坛热帖</h3>
|
|
|
|
|
<div class="welcome-box-list">
|
2013-11-28 10:14:03 +08:00
|
|
|
|
<% find_hot_forum_topics.each do |topic|%>
|
2013-11-28 17:22:24 +08:00
|
|
|
|
<li class="message-brief-intro" style="height: 25px;">
|
|
|
|
|
<div style="display: inline-block; float: left;">
|
|
|
|
|
<img src="/images/list-icon.png"></img>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display: inline-block;float: left;">
|
|
|
|
|
<span style="color:gray"><%= link_to topic.subject.truncate(30, omission: '...'), forum_memo_path(topic.forum_id,topic.id), :class => "gray" %></span>
|
2013-11-28 10:14:03 +08:00
|
|
|
|
<span style="margin-left: 10px; color: green">
|
|
|
|
|
<%= link_to topic.author, user_path(topic.author) %>
|
|
|
|
|
</span>
|
2013-11-28 16:00:53 +08:00
|
|
|
|
<span style="margin-left:10px; color:blue"><%= time_tag_welcome topic.created_at %>前</span>
|
2013-11-28 17:22:24 +08:00
|
|
|
|
</div>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
</li>
|
2013-11-28 10:07:49 +08:00
|
|
|
|
<% end %>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
2013-11-28 16:00:53 +08:00
|
|
|
|
<div class="right" style="float: right; margin-right: -10px; height: 445px; width: 50%; ">
|
2013-11-29 10:48:16 +08:00
|
|
|
|
<ul class="user-welcome-message-list" style="width: 80%; margin-top: 0px;">
|
2013-11-27 15:37:43 +08:00
|
|
|
|
<h3 style="margin-left: -5px;">用户动态</h3>
|
|
|
|
|
<div class="user-message-box-list">
|
2013-11-28 10:40:19 +08:00
|
|
|
|
<% find_all_activities.each do |event| %>
|
2013-11-28 09:46:16 +08:00
|
|
|
|
<li style="display: block;height:60px;">
|
2013-11-28 17:22:24 +08:00
|
|
|
|
<div class="inner-right" style="float: left; height: 100%; ">
|
2013-11-28 10:40:19 +08:00
|
|
|
|
<%= image_tag url_to_avatar(event.event_author), :class => "avatar-3" %>
|
2013-11-28 09:46:16 +08:00
|
|
|
|
</div>
|
2013-11-28 17:22:24 +08:00
|
|
|
|
<div class="inner-right" style="float: right; width:86%; height: 100%; ">
|
2013-11-30 10:41:14 +08:00
|
|
|
|
<span style="color: green;"><%= link_to event.event_author, user_path(event.event_author), :style => "color:green;" %></span><!-- 发表了<%= find_all_event_type event %>:<span style="color: blue;"><%= link_to truncate(event.event_title, length: 30, omission:'...'), event.event_url %>
|
|
|
|
|
</span> --><%= show_user_content event %>
|
2013-11-28 17:22:24 +08:00
|
|
|
|
<p><span style="color: rgb(172, 174, 177)"><%= time_tag_welcome event.event_datetime %>前</span> <!-- <span>评论(4)</span></p> -->
|
2013-11-27 15:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
</li>
|
2013-11-28 10:07:49 +08:00
|
|
|
|
<% end %>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
</div>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject">
|
2013-11-28 16:14:23 +08:00
|
|
|
|
<h2>热门项目</h2>
|
|
|
|
|
<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;">
|
2013-11-28 17:22:24 +08:00
|
|
|
|
<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">
|
2013-11-29 10:48:16 +08:00
|
|
|
|
<%= link_to( project.name, project_path(project.project_id), :class => "d-g-blue d-p-project-name", :title => "#{project.name}")%>
|
2013-11-30 09:29:02 +08:00
|
|
|
|
<span style="display: inline-block; float: right; color: #ec6300; background: url('/images/score.png') no-repeat scroll ;background-position: left center;" title="项目得分"> <%= show_grade project %></span>
|
2013-11-28 17:22:24 +08:00
|
|
|
|
</p>
|
|
|
|
|
<p class="layout-1" >
|
2013-11-29 10:48:16 +08:00
|
|
|
|
<%= content_tag "span", project.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => project.description %>
|
2013-11-28 17:22:24 +08:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
</li>
|
2013-11-28 16:14:23 +08:00
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2013-11-28 08:34:20 +08:00
|
|
|
|
</div>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
|
|
|
|
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
2013-11-28 16:14:23 +08:00
|
|
|
|
<h2>热门竞赛</h2>
|
|
|
|
|
<div class="d-p-projectlist-box">
|
|
|
|
|
<ul class="d-p-projectlist">
|
|
|
|
|
<% find_all_hot_contest.map do |contest| break if(contest == find_all_hot_contest[5]) %>
|
|
|
|
|
<li style="background-image:none;">
|
|
|
|
|
<p class="layout">
|
2013-11-29 10:48:16 +08:00
|
|
|
|
<%= link_to( contest.name, respond_path(contest.id), :class => "d-g-blue d-p-project-name", :title => "#{contest.name}")%>
|
2013-11-28 16:14:23 +08:00
|
|
|
|
</p>
|
|
|
|
|
<p class="layout-1" >
|
2013-11-30 10:41:14 +08:00
|
|
|
|
<%= content_tag "span", contest.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => contest.description %>
|
2013-11-28 16:14:23 +08:00
|
|
|
|
</p>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2013-11-28 08:34:20 +08:00
|
|
|
|
</div>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
|
2013-11-28 16:00:53 +08:00
|
|
|
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
2013-11-28 16:14:23 +08:00
|
|
|
|
<h2>热门众包</h2>
|
|
|
|
|
|
|
|
|
|
<div class="d-p-projectlist-box">
|
|
|
|
|
<ul class="d-p-projectlist">
|
|
|
|
|
<% find_all_hot_bid.map do |bid| break if(bid == find_all_hot_bid[5]) %>
|
|
|
|
|
<li style="background-image:none;">
|
|
|
|
|
<p class="layout">
|
2013-11-29 10:48:16 +08:00
|
|
|
|
<%= link_to( bid.name, respond_path(bid.id), :class => "d-g-blue d-p-project-name", :title => "#{bid.name}")%>
|
2013-11-28 16:14:23 +08:00
|
|
|
|
</p>
|
|
|
|
|
<p class="layout-1" >
|
2013-11-30 10:41:14 +08:00
|
|
|
|
<%= content_tag "span", bid.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => bid.description %>
|
2013-11-28 16:14:23 +08:00
|
|
|
|
</p>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2013-11-28 08:34:20 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
2013-11-27 15:37:43 +08:00
|
|
|
|
<div id="J_Slide" class="d-p-index-box d-p-index-hotproject" style="float: right;">
|
2013-11-28 16:14:23 +08:00
|
|
|
|
<h2>热门课程</h2>
|
|
|
|
|
<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;">
|
|
|
|
|
<p class="layout">
|
2013-11-29 10:48:16 +08:00
|
|
|
|
<%= link_to( project.name, project_path(project.project_id), :class => "d-g-blue d-p-project-name",:title => "#{project.name}")%>
|
2013-11-28 16:14:23 +08:00
|
|
|
|
</p>
|
|
|
|
|
<p class="layout-1" >
|
2013-11-30 10:41:14 +08:00
|
|
|
|
<%= content_tag "span", project.description.truncate(50, omission: '...'), :class => "d-p-project-intro" , :title => project.description %>
|
2013-11-28 16:14:23 +08:00
|
|
|
|
</p>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2013-11-28 08:34:20 +08:00
|
|
|
|
</div>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
|
2013-11-30 09:29:02 +08:00
|
|
|
|
<div class="clr">
|
2013-11-21 17:11:55 +08:00
|
|
|
|
</div>
|
2013-11-27 15:37:43 +08:00
|
|
|
|
|
2013-08-16 22:53:28 +08:00
|
|
|
|
|
2013-11-21 17:11:55 +08:00
|
|
|
|
<br/><br/><br/><br/><br/><br/><br/>
|
2013-11-28 18:27:18 +08:00
|
|
|
|
<!-- end -->
|
|
|
|
|
<div style="padding-top: 40px"></div>
|
2013-08-16 22:53:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|