15 lines
582 B
Plaintext
15 lines
582 B
Plaintext
<h3><%=l(:label_document_plural)%></h3>
|
|
|
|
<ul>
|
|
<% for document in Document.find :all,
|
|
:limit => 10,
|
|
:conditions => "documents.project_id in (#{@user.projects.collect{|m| m.id}.join(',')})",
|
|
:include => [:project] %>
|
|
<li>
|
|
<b><%= link_to document.title, :controller => 'documents', :action => 'show', :id => document %></b>
|
|
<br />
|
|
<%= truncate document.description, 150 %><br />
|
|
<em><%= format_time(document.created_on) %></em><br />
|
|
</li>
|
|
<% end unless @user.projects.empty? %>
|
|
</ul> |