scinote-web/app/views/shared/smart_annotation/_repository_items.html.erb

17 lines
771 B
Plaintext
Raw Normal View History

2020-09-11 19:00:13 +08:00
<% limit_reached = repository_rows.length == Constants::ATWHO_SEARCH_LIMIT + 1 %>
2020-09-09 20:17:19 +08:00
<div class="atwho-scroll-container">
2020-09-11 19:00:13 +08:00
<% repository_rows.take(Constants::ATWHO_SEARCH_LIMIT).each do |row| %>
2020-09-09 20:17:19 +08:00
<li class="item" data-name="<%= row[:name] %>" data-id="<%= row[:id] %>" data-type="rep_item">
<span class='sa-type'><%= row[:repository_tag] %></span>
<span class="item-text"><%= row[:name] %></span>
</li>
<% end %>
2020-09-11 19:00:13 +08:00
<% if limit_reached %>
2020-09-15 20:47:57 +08:00
<div class="more-results"><%= t('atwho.more_results') %></div>
2020-09-11 19:00:13 +08:00
<% end %>
2020-09-09 20:17:19 +08:00
<% if repository_rows.empty? %>
<%= render partial: 'shared/smart_annotation/no_results.html.erb', locals: { object_type: 'repository_rows' } %>
2020-09-09 20:17:19 +08:00
<% end %>
</div>
2020-09-07 16:46:51 +08:00
<%= render partial: 'shared/smart_annotation/footer.html.erb' %>