2006-12-03 22:55:45 +03:00
|
|
|
<h3><%=l(:label_document_plural)%></h3>
|
|
|
|
|
2006-12-17 11:10:18 +03:00
|
|
|
<%= render(:partial => 'documents/document',
|
|
|
|
:collection => Document.find(:all,
|
2006-12-03 22:55:45 +03:00
|
|
|
:limit => 10,
|
|
|
|
:conditions => "documents.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})",
|
2006-12-17 11:10:18 +03:00
|
|
|
:include => [:project])) unless @user.projects.empty? %>
|