Skip to content

Commit

Permalink
display rightsstatement_ss field
Browse files Browse the repository at this point in the history
  • Loading branch information
ebenenglish authored Sep 18, 2020
1 parent b620f80 commit 126fcab
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,12 @@
</dd>
<% end %>
<%# rights field %>
<% if document[:rights_ssm] || document[:license_ssm] %>
<% if document[:rights_ssm] || document[:license_ssm] || document[:rightsstatement_ss] %>
<dt><%= t('blacklight.metadata_display.fields.rights') %>:</dt>
<dd>
<% if document[:rightsstatement_ss].present? %>
<%= document[:rightsstatement_ss] %><br />
<% end %>
<% if document[:rights_ssm] %>
<% document[:rights_ssm].each do |rights| %>
<%= rights %><br />
Expand All @@ -249,7 +252,7 @@
</dd>
<% end %>
<%# additional rights/use info field %>
<% if document[:restrictions_on_access_ssm] %>
<% if document[:restrictions_on_access_ssm].present? %>
<dt><%= t('blacklight.metadata_display.fields.access') %>:</dt>
<dd>
<% document[:restrictions_on_access_ssm].each do |restrictions| %>
Expand Down

0 comments on commit 126fcab

Please sign in to comment.