vol1ura/Sat_9am_5km

View on GitHub
app/views/events/_volunteer.html.erb

Summary

Maintainability
Test Coverage
<%=
  turbo_frame_tag "volunteer-#{idx}" do
    if volunteer
      link_to_if can?(:manage, volunteer) && can?(:update, activity), volunteer.name, edit_volunteer_path(volunteer, idx:)
    elsif can?(:create, Volunteer) && can?(:update, activity)
      link_to 'добавить', new_volunteer_path(activity_id: activity.id, role: role, idx: idx)
    end
  end
%>