2007-03-12 20:59:02 +03:00
|
|
|
<div class="contextual">
|
2011-11-30 23:51:16 +04:00
|
|
|
<%= link_to l(:label_document_new), new_project_document_path(@project), :class => 'icon icon-add',
|
|
|
|
:onclick => 'Element.show("add-document"); Form.Element.focus("document_title"); return false;' if User.current.allowed_to?(:manage_documents, @project) %>
|
2007-10-18 20:59:28 +04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="add-document" style="display:none;">
|
|
|
|
<h2><%=l(:label_document_new)%></h2>
|
2011-11-30 23:51:16 +04:00
|
|
|
<% labelled_form_for @document, :url => project_documents_path(@project), :html => {:multipart => true} do |f| %>
|
|
|
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
|
|
|
<p>
|
|
|
|
<%= submit_tag l(:button_create) %>
|
|
|
|
<%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("add-document")' %>
|
|
|
|
</p>
|
2007-10-18 20:59:28 +04:00
|
|
|
<% end %>
|
2007-03-12 20:59:02 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2><%=l(:label_document_plural)%></h2>
|
|
|
|
|
2007-11-04 14:15:04 +03:00
|
|
|
<% if @grouped.empty? %><p class="nodata"><%= l(:label_no_data) %></p><% end %>
|
|
|
|
|
|
|
|
<% @grouped.keys.sort.each do |group| %>
|
|
|
|
<h3><%= group %></h3>
|
|
|
|
<%= render :partial => 'documents/document', :collection => @grouped[group] %>
|
2007-09-22 17:17:49 +04:00
|
|
|
<% end %>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2007-11-04 14:15:04 +03:00
|
|
|
<% content_for :sidebar do %>
|
2012-01-17 00:02:43 +04:00
|
|
|
<h3><%= l(:label_sort_by, '') %></h3>
|
|
|
|
<%= link_to l(:field_category), {:sort_by => 'category'}, :class => (@sort_by == 'category' ? 'selected' :nil) %><br />
|
|
|
|
<%= link_to l(:label_date), {:sort_by => 'date'}, :class => (@sort_by == 'date' ? 'selected' :nil) %><br />
|
|
|
|
<%= link_to l(:field_title), {:sort_by => 'title'}, :class => (@sort_by == 'title' ? 'selected' :nil) %><br />
|
|
|
|
<%= link_to l(:field_author), {:sort_by => 'author'}, :class => (@sort_by == 'author' ? 'selected' :nil) %>
|
2007-11-04 14:15:04 +03:00
|
|
|
<% end %>
|
2007-12-07 21:42:40 +03:00
|
|
|
|
2008-01-03 01:41:53 +03:00
|
|
|
<% html_title(l(:label_document_plural)) -%>
|