Redmine/redmine/app/views/projects/list_documents.rhtml
Jean-Philippe Lang 6b7650e2f0 Initial commit
git-svn-id: http://redmine.rubyforge.org/svn/trunk@4 e93f8b46-1217-0410-a6f0-8f06a7374b81
2006-06-28 18:11:03 +00:00

22 lines
569 B
Plaintext

<h2><%=_('Documents')%></h2>
<% documents = @documents.group_by {|d| d.category } %>
<% documents.each do |category, docs| %>
<h3><%= category.name %></h3>
<ul>
<% docs.each do |d| %>
<li>
<b><%= link_to d.title, :controller => 'documents', :action => 'show', :id => d %></b>
<br />
<%=_('Desciption')%>: <%= d.descr %><br />
<%= format_time(d.created_on) %>
</li>
<% end %>
</ul>
<% end %>
<p>
<%= link_to_if_authorized '&#187; ' + _('New'), :controller => 'projects', :action => 'add_document', :id => @project %>
</p>