tiss2go/app/views/crawlers/theses_crawler/show_basic.html.erb
2020-05-31 15:06:25 +02:00

25 lines
796 B
Plaintext

<%= render :partial => "crawlers/header", :locals => {:context => "Theses"} %>
<ul class="theses-list">
<% if @theses %>
<% @theses.each_with_index do |thesis| %>
<li class="thesis">
<%= link_to crawlers_theses_crawler_show_detail_url(:id => thesis['id'], :title => thesis['title']) do %>
<span class="list-link">
<span class="thesis-title">
<%= thesis['title'] %>
</span>
</span>
<% end %>
<span class="add-to-fav">
<%= link_to crawlers_theses_crawler_add_to_fav_url(:id => thesis['id'], :title => thesis['title']) do %>
<%= show_svg('favorite-24px.svg') %>
<% end %>
</span>
</li>
<% end %>
<% else %>
Could not find anything... Please try again.
<% end %>
</ul>