app/views/admin/research/theses/_list.html.erb
<div class="row g-2 mb-3">
<% @theses.each do |thesis| %>
<div>
<div class="<%= osuny_card_classes(horizontal: true) %>">
<%= osuny_thumbnail_localized thesis %>
<div class="card-body">
<%= osuny_link_localized thesis, [:admin, thesis] %><br>
<%= thesis.author.to_s_in(current_language) if thesis.author.present? %>
</div>
<div class="card-footer">
<%= thesis.laboratory.to_s_in(current_language) if thesis.laboratory.present? %>
</div>
</div>
</div>
<% end %>
</div>