20 lines
756 B
Text
20 lines
756 B
Text
|
|
<% content_for :message do %>
|
||
|
|
<p><%= t(".found_invalid.html", collection_link: style_link(@collection.title, collection_url(@collection))) %></p>
|
||
|
|
|
||
|
|
<p><%= t(".see_details.html", challenge_matching_help_link: style_link(t(".see_details.challenge_matching_help"), "#{root_url}help/challenge-matching.html#invalid_signups")) %></p>
|
||
|
|
|
||
|
|
<p><%= t(".signups_here") %>
|
||
|
|
<ul>
|
||
|
|
<% @invalid_signups.each do |signup_id| %>
|
||
|
|
<li><%= style_link(t(".signup", signup_id: signup_id), collection_signup_url(@collection, signup_id)) %></li>
|
||
|
|
<% end %>
|
||
|
|
</ul>
|
||
|
|
</p>
|
||
|
|
<% end %>
|
||
|
|
|
||
|
|
<% content_for :footer_note do %>
|
||
|
|
<%= collection_footer_note_html(@is_collection_email, @collection) %>
|
||
|
|
<% end %>
|
||
|
|
|
||
|
|
<% content_for :sent_at do %><%= l(Time.current) %><% end %>
|