Add indication for unverified volunteers
This commit is contained in:
parent
2180b0ea9f
commit
4a70590211
|
@ -3,7 +3,7 @@
|
|||
<%- @volunteers.each do |volunteer| -%>
|
||||
<%= CSV.generate_line([volunteer.id,
|
||||
volunteer.name,
|
||||
volunteer.email,
|
||||
"#{volunteer.confirmed_at.nil? ? '(unverified) ' : ''}#{volunteer.email}",
|
||||
volunteer.language,
|
||||
volunteer.unique_id,
|
||||
volunteer.phone,
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
h4.media-heading
|
||||
= volunteer.name
|
||||
p
|
||||
= icon(:envelope, volunteer.email)
|
||||
= icon(volunteer.confirmed_at.present? ? "envelope" : "envelope-o", "#{volunteer.confirmed_at.nil? ? '(unverified) ' : ''}#{volunteer.email}")
|
||||
td
|
||||
= volunteer.volunteer_team.name
|
||||
td.actions
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
h4 = t '.other_info'
|
||||
= icon(:language, t("locales.#{@volunteer.language}"))
|
||||
br
|
||||
= icon(:envelope, @volunteer.email)
|
||||
= icon(@volunteer.confirmed_at.present? ? "envelope" : "envelope-o", @volunteer.email)
|
||||
br
|
||||
= icon(:phone, @volunteer.phone.try(:phony_formatted, format: :international))
|
||||
br
|
||||
|
|
Loading…
Reference in New Issue