forked from retoor/devplacepy
Every purchase/upgrade path (new and pre-existing) is now race-safe against concurrent requests via atomic conditional SQL updates. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
15 lines
473 B
HTML
15 lines
473 B
HTML
{% if farm.mastery_analytics_unlocked %}
|
|
<div class="shop-row">
|
|
<div class="shop-info">
|
|
<strong>Lifetime coins earned</strong>
|
|
<span>{{ farm.lifetime_coins_earned }}c since Farm Analytics was unlocked.</span>
|
|
</div>
|
|
</div>
|
|
<div class="shop-row">
|
|
<div class="shop-info">
|
|
<strong>Lifetime harvests</strong>
|
|
<span>{{ farm.lifetime_harvests }} builds harvested since Farm Analytics was unlocked.</span>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|