Changeset 9a00f28 in Klonkt for src/views/pages/paid-result.ejs
- Timestamp:
- 07/22/2026 08:18:39 AM (7 weeks ago)
- Branches:
- main
- Children:
- 6b5d7da
- Parents:
- 96c714f
- git-author:
- Robin <roboburr@…> (07/22/2026 08:18:19 AM)
- git-committer:
- Robin <roboburr@…> (07/22/2026 08:18:39 AM)
- File:
-
- 1 edited
-
src/views/pages/paid-result.ejs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/views/pages/paid-result.ejs
r96c714f r9a00f28 8 8 <div class="pr-ic">🔒</div> 9 9 <% if (reason === 'notpatron') { %> 10 <h1 class="pr-h1"> Nog geen supporter</h1>11 <p class="pr-sub"> Je bent (nog) geen actieve supporter van deze site op Patreon. Word supporter en probeer het daarna opnieuw vanaf de post.</p>10 <h1 class="pr-h1"><%= t('pres.notpatron_h') %></h1> 11 <p class="pr-sub"><%= t('pres.notpatron_p') %></p> 12 12 <% } else if (reason === 'tier') { %> 13 <h1 class="pr-h1">Een niveau hoger nodig</h1> 14 <p class="pr-sub"> 15 Deze post vraagt vanaf €<%= ((typeof neededCents !== 'undefined' ? neededCents : 0)/100).toFixed(2) %>. 16 Jouw steun is nu €<%= ((typeof haveCents !== 'undefined' ? haveCents : 0)/100).toFixed(2) %>. Verhoog je steun en probeer opnieuw. 17 </p> 13 <h1 class="pr-h1"><%= t('pres.tier_h') %></h1> 14 <p class="pr-sub"><%= t('pres.tier_p', { need: ((typeof neededCents !== 'undefined' ? neededCents : 0)/100).toFixed(2), have: ((typeof haveCents !== 'undefined' ? haveCents : 0)/100).toFixed(2) }) %></p> 18 15 <% } else if (reason === 'expired') { %> 19 <h1 class="pr-h1"> Aanvraag verlopen</h1>20 <p class="pr-sub"> Deze ontgrendel-link is verlopen of al gebruikt. Ga terug naar de post en probeer het opnieuw.</p>16 <h1 class="pr-h1"><%= t('pres.expired_h') %></h1> 17 <p class="pr-sub"><%= t('pres.expired_p') %></p> 21 18 <% } else { %> 22 <h1 class="pr-h1"> Ontgrendelen afgebroken</h1>23 <p class="pr-sub"> Er is niets gekoppeld. Je kunt het opnieuw proberen vanaf de post.</p>19 <h1 class="pr-h1"><%= t('pres.declined_h') %></h1> 20 <p class="pr-sub"><%= t('pres.declined_p') %></p> 24 21 <% } %> 25 22 26 23 <div class="pr-actions"> 27 24 <% if ((reason === 'notpatron' || reason === 'tier') && _patron) { %> 28 <a class="pr-btn" href="<%= _patron %>" target="_blank" rel="noopener"> Word supporter op Patreon</a>25 <a class="pr-btn" href="<%= _patron %>" target="_blank" rel="noopener"><%= t('pres.join') %></a> 29 26 <% } %> 30 27 <% if (_slug) { %> 31 <a class="pr-btn pr-btn-ghost" href="<%= _base %>/<%= _slug %>"> Terug naar de post</a>28 <a class="pr-btn pr-btn-ghost" href="<%= _base %>/<%= _slug %>"><%= t('pres.back_post') %></a> 32 29 <% } else { %> 33 <a class="pr-btn pr-btn-ghost" href="<%= _base %>/"> Terug naar de site</a>30 <a class="pr-btn pr-btn-ghost" href="<%= _base %>/"><%= t('pres.back_site') %></a> 34 31 <% } %> 35 32 </div>
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)