diff --git a/app/views/admin/scenarios/index.html.erb b/app/views/admin/scenarios/index.html.erb index 7c3ff9d..4ec3ea4 100644 --- a/app/views/admin/scenarios/index.html.erb +++ b/app/views/admin/scenarios/index.html.erb @@ -28,7 +28,12 @@ <% @scenarios.each do |scenario| %> - <%= scenario.user.display_name %> + + <%= link_to scenario.user.display_name, + admin_scenarios_path(q: scenario.user.email_address), + data: { turbo_frame: "_top" }, + class: "text-ink hover:text-ink-soft hover:underline" %> + <%= scenario.name %> <%= scenario.total_giving_amount.present? ? number_to_currency(scenario.total_giving_amount, precision: 0) : content_tag(:span, "—", class: "text-ink-faint") %>