2007-03-12 20:59:02 +03:00
|
|
|
<h3><%=l(:label_news_latest)%></h3>
|
|
|
|
|
2011-09-14 12:40:33 +04:00
|
|
|
<%= render(:partial => 'news/news',
|
2007-03-12 20:59:02 +03:00
|
|
|
:collection => News.find(:all,
|
|
|
|
:limit => 10,
|
2007-03-16 01:11:02 +03: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 12:40:33 +04:00
|
|
|
:include => [:project, :author])) unless @user.projects.empty? %>
|