15 lines
568 B
Plaintext
15 lines
568 B
Plaintext
<p>Your <%= release_type.titleize %> contracts 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>
|
|
<% else %>
|
|
<li><%= download.release_type.titleize %> contracts (as of <%= time_ago_in_words(download.created_at) %> ago)
|
|
</li>
|
|
<% end %>
|
|
<% end %>
|
|
</ul>
|