<%= t('page.model') -%> |
<%= t('page.number_of_record') -%> |
<%= t('page.note') -%> |
<%= link_to t('activerecord.models.agent'), agents_path -%> |
<%= Agent.count -%> |
|
<%= link_to t('activerecord.models.user'), users_path -%> |
<%= User.count -%> |
|
<%= link_to t('activerecord.models.manifestation'), manifestations_path -%> |
<%= Manifestation.count -%> |
|
<%= link_to t('activerecord.models.item'), items_path -%> |
<%= Item.count -%> |
|
<% if defined?(EnjuSearchLog) %>
<%= link_to t('activerecord.models.search_history'), search_histories_path -%> |
<%= SearchHistory.count -%> |
|
<% end %>
<% if defined?(EnjuBookmark) %>
<%= link_to t('activerecord.models.bookmark'), bookmarks_path -%> |
<%= Bookmark.count -%>
(<%= link_to t('activerecord.attributes.bookmark_stat_has_manifestation.bookmarks_count'), bookmark_stats_path -%>)
|
|
<%= link_to t('activerecord.models.tag'), tags_path -%> |
<%= Tag.count -%> |
|
<% end %>
<% if defined?(EnjuSubject) %>
<%= link_to t('activerecord.models.subject'), subjects_path -%> |
<%= Subject.count -%> |
|
<% end %>
<% if defined?(EnjuCirculation) %>
<%= link_to t('activerecord.models.checkout'), checkouts_path -%> |
<%= Checkout.count -%>
(<%= link_to t('activerecord.attributes.checkout_stat_has_user.checkouts_count'), user_checkout_stats_path -%>)
(<%= link_to t('activerecord.attributes.checkout_stat_has_manifestation.checkouts_count'), manifestation_checkout_stats_path -%>)
|
|
<%= link_to t('activerecord.models.reserve'), reserves_path -%> |
<%= Reserve.count -%>
(<%= link_to t('activerecord.attributes.reserve_stat_has_user.reserves_count'), user_reserve_stats_path -%>)
(<%= link_to t('activerecord.attributes.reserve_stat_has_manifestation.reserves_count'), manifestation_reserve_stats_path -%>)
|
|
<% end %>
<% if defined?(EnjuPurchaseRequest) %>
<%= link_to t('activerecord.models.purchase_request'), purchase_requests_path -%> |
<%= PurchaseRequest.count -%> |
|
<% end %>
<% if defined?(EnjuQuestion) %>
<%= link_to t('activerecord.models.question'), questions_path -%> |
<%= Question.count -%> |
|
<%= link_to t('activerecord.models.answer'), answers_path -%> |
<%= Answer.count -%> |
|
<% end %>