modify created project info as a fist activity

This commit is contained in:
Administrator 2013-09-02 21:32:15 +08:00
parent 17ece286ed
commit f0791fe132
4 changed files with 10 additions and 3 deletions

View File

@ -320,6 +320,7 @@ class ProjectsController < ApplicationController
@subprojects = @project.children.visible.all @subprojects = @project.children.visible.all
@news = @project.news.limit(5).includes(:author, :project).reorder("#{News.table_name}.created_on DESC").all @news = @project.news.limit(5).includes(:author, :project).reorder("#{News.table_name}.created_on DESC").all
@trackers = @project.rolled_up_trackers @trackers = @project.rolled_up_trackers
@user = User.find_by_id(ProjectInfo.find_by_project_id(@project.id).user_id)
cond = @project.project_condition(Setting.display_subprojects_issues?) cond = @project.project_condition(Setting.display_subprojects_issues?)

View File

@ -42,5 +42,9 @@
</div> </div>
</div> </div>
<% else %> <% else %>
<p class="font_description"><%= l(:label_project_no_activity) %></p> <p class="font_description">
<table width="660"><tr><td><%=link_to image_tag(url_to_avatar(@user), :class => "avatar"), user_path(@user)%></td><td colspan="2">
<table width="580">
<tr><td ><%=link_to @user.login.to_s,user_path(@user) %> <%= l(:label_user_create_project)+" "+ @project.name %></td></tr>
<tr><td class="font_lighter" style="float: right"><%= format_time(@project.created_on) %></table></td></tr></table></p>
<% end %> <% end %>

View File

@ -1343,3 +1343,4 @@ en:
label_in_issues: in the issue label_in_issues: in the issue
label_in_bids: in the call label_in_bids: in the call
label_in_users: in the user label_in_users: in the user
label_user_create_project: has created

View File

@ -1355,3 +1355,4 @@ zh:
label_projects_feedback_respond_success: 回复成功 label_projects_feedback_respond_success: 回复成功
button_projects_feedback_respond: 回复 button_projects_feedback_respond: 回复
label_projects_feedback_respond_content: 请输入回复内容 label_projects_feedback_respond_content: 请输入回复内容
label_user_create_project: 创建了