Noosfero/noosfero

View on GitHub
plugins/work_assignment/views/content_viewer/work_assignment.html.erb

Summary

Maintainability
Test Coverage
<% extend WorkAssignmentPlugin::Helper %>

<% unless @page.body.blank? %>
  <div><%= @page.body.html_safe %></div>
  <hr/>
<% end %>


<div class='upload-files'>
  <h3><%= _('Publish image or document') %></h3>
  <p>
    <%= _('Select the file you want to send (text documents, images, '\
          'video, audio). Finally, click in the "Upload" button to submit '\
          'the files.') %>
  </p>

  <%= form_for('uploaded_file', url: { action: 'upload_files', controller: 'cms' }, html: { multipart: true, id: :file_upload_form }) do |f| %>
    <%= render :partial => 'cms/upload_file_form',
               :locals => { size: '45', back_to: url_for(@page.url),
                            num_of_files: 1, parent: @page } %>
  <% end %>

  <p class='hint'>
    <%= _('Uploading files to %s') % @page.full_path %>
  </p>
</div>

<div class='submissions'>
  <h3><%= _('Submissions') %></h3>
  <%= display_submissions(@page, user) %>
</div>

<%= javascript_include_tag 'plugins/work_assignment/show_versions' %>