2b86ef8e28
- validation of names and labels against /^[\w\s\'\-]*$/i - html entities encoding git-svn-id: http://redmine.rubyforge.org/svn/trunk@99 e93f8b46-1217-0410-a6f0-8f06a7374b81
13 lines
522 B
Plaintext
13 lines
522 B
Plaintext
<div class="contextual">
|
|
<%= link_to_if_authorized l(:label_document_new), {:controller => 'projects', :action => 'add_document', :id => @project}, :class => 'pic picAdd' %>
|
|
</div>
|
|
|
|
<h2><%=l(:label_document_plural)%></h2>
|
|
|
|
<% if @documents.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
|
|
|
|
<% documents = @documents.group_by {|d| d.category } %>
|
|
<% documents.each do |category, docs| %>
|
|
<h3><%= category.name %></h3>
|
|
<%= render :partial => 'documents/document', :collection => docs %>
|
|
<% end %> |