2007-03-12 20:59:02 +03:00
|
|
|
<h3><%=l(:label_news_latest)%></h3>
|
|
|
|
|
2007-04-20 13:53:44 +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(',')})",
|
2006-12-17 11:10:18 +03:00
|
|
|
:include => [:project, :author])) unless @user.projects.empty? %>
|