diff --git a/app/presenters/hyrax/collection_presenter.rb b/app/presenters/hyrax/collection_presenter.rb index 27a7585661..36fdad0139 100644 --- a/app/presenters/hyrax/collection_presenter.rb +++ b/app/presenters/hyrax/collection_presenter.rb @@ -43,7 +43,7 @@ def collection_type # Terms is the list of fields displayed by # app/views/collections/_show_descriptions.html.erb def self.terms - [:total_items, :size, :resource_type, :creator, :contributor, :keyword, :license, :publisher, :date_created, :subject, + [:total_items, :alternative_title, :size, :resource_type, :creator, :contributor, :keyword, :license, :publisher, :date_created, :subject, :language, :identifier, :based_near, :related_url] end diff --git a/app/views/hyrax/base/_attribute_rows.html.erb b/app/views/hyrax/base/_attribute_rows.html.erb index 4ccd29fbea..1d34abd8b0 100644 --- a/app/views/hyrax/base/_attribute_rows.html.erb +++ b/app/views/hyrax/base/_attribute_rows.html.erb @@ -1,3 +1,4 @@ +<%= presenter.attribute_to_html(:alternative_title, html_dl: true) %> <%= presenter.attribute_to_html(:abstract, html_dl: true) %> <%= presenter.attribute_to_html(:date_modified, label: t('hyrax.base.show.last_modified'), html_dl: true) %> <%= presenter.attribute_to_html(:creator, render_as: :faceted, html_dl: true) %>