<%=l(:label_document_plural)%>
<% if @documents.empty? %><%= l(:label_no_data) %>
<% end %>
<% documents = @documents.group_by {|d| d.category } %>
<% documents.each do |category, docs| %>
<%= category.name %>
<% docs.each do |d| %>
-
<%= link_to d.title, :controller => 'documents', :action => 'show', :id => d %>
<%= truncate d.description, 250 %>
<%= format_time(d.created_on) %>
<% end %>
<% end %>
<%= link_to_if_authorized '» ' + l(:label_document_new), :controller => 'projects', :action => 'add_document', :id => @project %>