rDrama/files/templates/donate.html

44 lines
1.6 KiB
HTML
Raw Normal View History

2022-09-19 23:59:24 +00:00
{% extends "default.html" %}
2022-11-19 22:20:38 +00:00
{% block pagetitle %}Donate{% endblock %}
2022-09-19 23:59:24 +00:00
{% block content %}
2023-10-10 09:41:00 +00:00
{% set can_see = DONATE_LINK != DEFAULT_CONFIG_VALUE and v and v.can_see_countryclub and v.chud != 1 %}
2023-08-23 22:12:32 +00:00
<h1 class="py-3">Donate and get {{patron}} rewards</h1>
2022-09-19 23:59:24 +00:00
<div class="overflow-x-auto">
<table>
2022-09-19 23:59:24 +00:00
<tbody>
2023-10-10 09:41:00 +00:00
{% if can_see %}
2023-10-05 14:35:52 +00:00
<tr>
<td>{{DONATE_SERVICE}}</td>
<td><a rel="noopener" href="{{DONATE_LINK}}">{{DONATE_LINK}}</a></td>
2023-10-05 14:35:52 +00:00
</tr>
2023-10-10 09:39:19 +00:00
{% elif SITE == 'rdrama.net' %}
2023-10-10 09:25:09 +00:00
<tr>
<td>Buymeacoffee</td>
<td><a rel="noopener" href="https://buymeacoffee.com/rdrama.net/membership">https://buymeacoffee.com/rdrama.net/membership</a></td>
2023-10-10 09:25:09 +00:00
</tr>
{% endif %}
2023-10-10 09:23:16 +00:00
<tr>
2023-10-31 22:45:12 +00:00
<td>Bitcoin (BTC)</td>
2023-11-16 13:48:45 +00:00
<td>bc1q4cpgzld8m50tpmrf6akcp59la56u8sku4lqkgv</td>
2023-10-31 22:45:12 +00:00
</tr>
<tr>
<td>Ethereum (ETH)</td>
2022-09-19 23:59:24 +00:00
<td>0xBBf1043A60C6894Db17b3118CA960FFDF84c9eea</td>
</tr>
<tr>
2023-10-18 18:01:54 +00:00
<td>Monero (XMR)</td>
<td>44hdEpAYXkB2VwkWz6LR9zZhcaG8zrUzn21aPy1HSdcsjT51fPdpMV8hkf5QQdHKs9VsAs3so5Vq5easdBbzmcifGcqfxfw</td>
</tr>
2022-09-19 23:59:24 +00:00
</tbody>
</table>
2023-10-10 09:41:00 +00:00
{% if can_see %}
2023-08-23 22:15:53 +00:00
<li class="pl-2 pb-4">
2023-10-24 15:26:51 +00:00
If you donate via {{DONATE_SERVICE}}, please first make sure your email on {{SITE}} and your email on {{DONATE_SERVICE}} are the same, then click "Claim {{patron}} Rewards" <a href="/settings/security#site-settings-email-section">here</a>
2023-08-23 22:15:53 +00:00
</li>
2023-08-23 22:12:32 +00:00
{% endif %}
2023-08-23 22:15:53 +00:00
<li class="pl-2">
2023-10-20 19:13:20 +00:00
If you donate{% if can_see %} crypto{% endif %}, please let us know by <a href="/contact">sending us the transaction id via modmail</a> so we can give you your {{patron}} rewards manually!
2023-08-23 22:15:53 +00:00
</li>
2022-09-19 23:59:24 +00:00
</div>
{% endblock %}