<% if student.photo.attached? %> <%# Fallback for image processing errors %> <% begin %> <%= image_tag url_for(student.photo.variant(resize_to_limit: [120, 120]).processed), alt: student.first_name %> <% rescue => e %> <%= image_tag url_for(student.photo), alt: student.first_name %> <% end %> <% else %> No Photo <% end %>

<%= student.first_name %> <%= student.last_name %>

<% if student.institution.present? %> <%= link_to student.institution.name, institution_path(student.institution), class: "badge badge-primary" %> <% else %> No institution <% end %>

<%= student.email %>

Phone: <%= student.phone_number %>
Place: <%= student.place %>
Age: <%= student.age %>