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.rhtml @ 442:753f1380d6bc
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? %>
|