2020-09-11 19:00:13 +08:00
|
|
|
<% limit_reached = projects.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
|
|
|
<% projects.limit(Constants::ATWHO_SEARCH_LIMIT).each do |project| %>
|
2020-09-09 20:17:19 +08:00
|
|
|
<li class="item" data-name="<%= project.name %>" data-id="<%= project.id.base62_encode %>" data-type="prj">
|
|
|
|
<span class='sa-type'>Prj</span>
|
|
|
|
<span class="item-text"><%= project.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 projects.empty? %>
|
2020-09-18 14:50:01 +08:00
|
|
|
<%= render partial: 'shared/smart_annotation/no_results.html.erb', locals: { object_type: 'projects' } %>
|
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' %>
|