8 lines
438 B
Plaintext
8 lines
438 B
Plaintext
<h3><%=l(:label_document_plural)%></h3>
|
|
|
|
<%= render(:partial => 'documents/document',
|
|
:collection => Document.find(:all,
|
|
:limit => 10,
|
|
:order => 'documents.created_on DESC',
|
|
:conditions => "documents.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})",
|
|
:include => [:project])) unless @user.projects.empty? %> |