To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / my / blocks / _documents.html.erb @ 912:5e80956cc792
History | View | Annotate | Download (533 Bytes)
| 1 | 0:513646585e45 | Chris | <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? %> |