18 lines
749 B
Plaintext
18 lines
749 B
Plaintext
<p>Your <%= release_type.titleize %> files are being prepared for download. You will be notified when it's ready.
|
|
</p>
|
|
<p class="mt-3">The following downloads are also in progress:</p>
|
|
<ul>
|
|
<% downloads.each do |download| %>
|
|
<% if download.release_type == "reports"%>
|
|
<li><%= download.release_type.titleize %> (as of <%= time_ago_in_words(download.created_at) %> ago)
|
|
</li>
|
|
<% elsif download.release_type == "CastingCallInterview"%>
|
|
<li><%= download.release_type.titleize %> files (as of <%= time_ago_in_words(download.created_at) %> ago)
|
|
</li>
|
|
<% else %>
|
|
<li><%= download.release_type.titleize %> contracts (as of <%= time_ago_in_words(download.created_at) %> ago)
|
|
</li>
|
|
<% end %>
|
|
<% end %>
|
|
</ul>
|