Skip to content

Commit

Permalink
Merge pull request #2164 from projecthydra/work_show_linked_metadata
Browse files Browse the repository at this point in the history
Work Show Page Linked Metadata
  • Loading branch information
mjgiarlo committed Jun 8, 2016
2 parents 8f7ba43 + 18f2999 commit 948efa1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions app/views/curation_concerns/base/_attribute_rows.html.erb
@@ -1,11 +1,11 @@
<%= presenter.attribute_to_html(:creator, catalog_search_link: true ) %>
<%= presenter.attribute_to_html(:contributor, label: 'Contributors', catalog_search_link: true) %>
<%= presenter.attribute_to_html(:subject, catalog_search_link: true) %>
<%= presenter.attribute_to_html(:publisher) %>
<%= presenter.attribute_to_html(:language) %>
<%= presenter.attribute_to_html(:identifier) %>
<%= presenter.attribute_to_html(:keyword) %>
<%= presenter.attribute_to_html(:date_created) %>
<%= presenter.attribute_to_html(:based_near) %>
<%= presenter.attribute_to_html(:creator, render_as: :faceted ) %>
<%= presenter.attribute_to_html(:contributor, label: 'Contributors', render_as: :faceted) %>
<%= presenter.attribute_to_html(:subject, render_as: :faceted ) %>
<%= presenter.attribute_to_html(:publisher, render_as: :faceted ) %>
<%= presenter.attribute_to_html(:language, render_as: :faceted ) %>
<%= presenter.attribute_to_html(:identifier, render_as: :linked, search_field: 'identifier_tesim') %>
<%= presenter.attribute_to_html(:keyword, render_as: :faceted ) %>
<%= presenter.attribute_to_html(:date_created, render_as: :linked, search_field: 'date_created_tesim' ) %>
<%= presenter.attribute_to_html(:based_near, render_as: :faceted ) %>
<%= presenter.attribute_to_html(:related_url) %>
<%= presenter.attribute_to_html(:resource_type) %>
<%= presenter.attribute_to_html(:resource_type, render_as: :faceted ) %>
2 changes: 1 addition & 1 deletion app/views/curation_concerns/base/_metadata.html.erb
Expand Up @@ -7,6 +7,6 @@
<%= render 'attribute_rows', presenter: presenter %>
<%= presenter.attribute_to_html(:embargo_release_date) %>
<%= presenter.attribute_to_html(:lease_expiration_date) %>
<%= presenter.attribute_to_html(:rights) %>
<%= presenter.attribute_to_html(:rights, render_as: :rights) %>
</tbody>
</table>

0 comments on commit 948efa1

Please sign in to comment.