18 lines
559 B
Plaintext
18 lines
559 B
Plaintext
<section id="doing-cards" class="cards cards--doing">
|
|
<h2 class="cards__heading">
|
|
Working On
|
|
</h2>
|
|
|
|
<% if page.used? %>
|
|
<%= render partial: "cards/display/public_preview", collection: page.records, as: :card, cached: ->(card) { card.cache_invalidation_parts.for_preview } %>
|
|
|
|
<% unless page.last? %>
|
|
<div class="full-width">
|
|
<%= public_collection_cards_next_page_link collection, "doing-cards", page: page %>
|
|
</div>
|
|
<% end %>
|
|
<% else %>
|
|
<p class="txt-medium translucent">Nothing here</p>
|
|
<% end %>
|
|
</section>
|