To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / bc / bc9185ee675b6fb8b2207370c1cf95af6aa786d9.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (533 Bytes)
| 1 |
<h3><%=l(:label_document_plural)%></h3> |
|---|---|
| 2 |
|
| 3 |
<% project_ids = @user.projects.select {|p| @user.allowed_to?(:view_documents, p)}.collect(&:id) %>
|
| 4 |
<%= render(:partial => 'documents/document', |
| 5 |
:collection => Document.find(:all, |
| 6 |
:limit => 10, |
| 7 |
:order => "#{Document.table_name}.created_on DESC",
|
| 8 |
:conditions => "#{Document.table_name}.project_id in (#{project_ids.join(',')})",
|
| 9 |
:include => [:project])) unless project_ids.empty? %> |