Sha256: 29e30ae56b01b1480f2aa306dba1125a1472985ceb22fbe4609b444dd9a54480

Contents?: true

Size: 1.83 KB

Versions: 35

Compression:

Stored size: 1.83 KB

Contents

<% provide :page_header do %>
  <h1>Manage Embargoes for  <%= curation_concern %><span class="human_readable_type">(<%= curation_concern.human_readable_type %>)</span></h1>
<% end %>

<h2>Current Embargo</h2>
<%= simple_form_for [main_app, curation_concern] do |f| %>
  <fieldset class="set-access-controls">
    <section class="help-block">
      <p>
        <% if curation_concern.embargo_release_date %>
          <strong>This work is under embargo.</strong>
        <% else %>
          <strong>This work is not currently under embargo.</strong> If you would like to apply and embargo, provide the information here.
        <% end %>
      </p>
    </section>

    <div class="form-group">
      <input type="hidden" name="<%= f.object_name %>[visibility]" value="<%= Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_EMBARGO %>" />
      <%= render "curation_concerns/base/form_permission_embargo", curation_concern: curation_concern, f: f  %>
    </div>
  </fieldset>

  <div class="row">
    <div class="col-md-12 form-actions">
      <% if curation_concern.embargo_release_date %>
        <%= f.submit "Update Embargo", class: 'btn btn-primary' %>
        <%= link_to "Deactivate Embargo", embargo_path(curation_concern), method: :delete, class: 'btn btn-danger' %>
      <% else %>
        <%= f.submit "Apply Embargo", class: 'btn btn-primary' %>
      <% end %>
      <%= link_to 'Cancel and manage all embargoes', embargoes_path, class: 'btn btn-default' %>
      <%= link_to "Return to editing this #{curation_concern.human_readable_type}", [:edit, curation_concern], class: 'btn btn-default' %>
    </div>
  </div>
<% end %>

<h2>Past Embargoes</h2>
<% if curation_concern.embargo_history.empty? %>
  This <%= curation_concern.human_readable_type %> has never had embargoes applied to it.
<% else %>
  <%= render partial: "embargo_history" %>
<% end %>

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
curation_concerns-1.7.8 app/views/embargoes/edit.html.erb
curation_concerns-1.7.7 app/views/embargoes/edit.html.erb
curation_concerns-2.0.0 app/views/embargoes/edit.html.erb
curation_concerns-2.0.0.rc2 app/views/embargoes/edit.html.erb
curation_concerns-1.7.6 app/views/embargoes/edit.html.erb
curation_concerns-1.7.5 app/views/embargoes/edit.html.erb
curation_concerns-1.7.4 app/views/embargoes/edit.html.erb
curation_concerns-1.7.3 app/views/embargoes/edit.html.erb
curation_concerns-1.7.2 app/views/embargoes/edit.html.erb
curation_concerns-2.0.0.rc1 app/views/embargoes/edit.html.erb
curation_concerns-1.7.1 app/views/embargoes/edit.html.erb
curation_concerns-1.7.0 app/views/embargoes/edit.html.erb
curation_concerns-1.7.0.beta1 app/views/embargoes/edit.html.erb
curation_concerns-1.6.3 app/views/embargoes/edit.html.erb
curation_concerns-1.6.2 app/views/embargoes/edit.html.erb
curation_concerns-1.6.1 app/views/embargoes/edit.html.erb
curation_concerns-1.6.0 app/views/embargoes/edit.html.erb
curation_concerns-1.5.0 app/views/embargoes/edit.html.erb
curation_concerns-1.4.0 app/views/embargoes/edit.html.erb
curation_concerns-1.3.3 app/views/embargoes/edit.html.erb