2007-03-12 17:59:02 +00:00
|
|
|
<h3><%=l(:label_news_latest)%></h3>
|
|
|
|
|
2011-09-14 08:40:33 +00:00
|
|
|
<%= render(:partial => 'news/news',
|
2007-03-12 17:59:02 +00:00
|
|
|
:collection => News.find(:all,
|
|
|
|
:limit => 10,
|
2007-03-15 22:11:02 +00:00
|
|
|
:order => "#{News.table_name}.created_on DESC",
|
|
|
|
:conditions => "#{News.table_name}.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})",
|
2011-09-14 08:40:33 +00:00
|
|
|
:include => [:project, :author])) unless @user.projects.empty? %>
|