uclibs / uc_drc

DRC migration planning and work
Other
0 stars 0 forks source link

Removes depositor and keyword from recent documents partial. #114

Closed scherztc closed 3 years ago

scherztc commented 3 years ago

Fixes #103

Removed this two fields from the recent documents partial since they are having problems with metadata profile.

'''

<%= t('hyrax.homepage.recently_uploaded.document.depositor_label') %>: <%= link_to_profile recent_document.depositor(t('hyrax.homepage.recently_uploaded.document.depositor_missing')) %>

    <p class="recent-field">
      <span class="recent-label"><%= t('hyrax.homepage.recently_uploaded.document.keyword_label') %>:</span> <%= link_to_facet_list(recent_document.keyword, 'keyword', t('hyrax.homepage.recently_uploaded.document.keyword_missing')).html_safe %>
    </p>

''' This just leaves title in the partial which is fine for our use cases.

Overwrote : https://raw.githubusercontent.com/samvera/hyrax/2.x-stable/app/views/hyrax/homepage/_recent_document.html.erb

crowesn commented 3 years ago

Looks good, thanks.