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-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 class = "table table-striped mb-5" >
< tbody >
2023-10-08 18:58:12 +00:00
{% if DONATE_LINK != DEFAULT_CONFIG_VALUE and v and v.can_see_countryclub and v.chud != 1 %}
2023-10-05 14:35:52 +00:00
< tr >
< td > {{DONATE_SERVICE}}< / td >
< td > < a rel = "nofollow noopener" href = "{{DONATE_LINK}}" > {{DONATE_LINK}}< / a > < / td >
< / 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 = "nofollow noopener" href = "https://buymeacoffee.com/rdrama.net/membership" > https://buymeacoffee.com/rdrama.net/membership< / a > < / td >
< / tr >
{% endif %}
2023-10-10 09:23:16 +00:00
< tr >
2022-09-19 23:59:24 +00:00
< td > Ethereum/Brave Attention Token< / td >
< td > 0xBBf1043A60C6894Db17b3118CA960FFDF84c9eea< / td >
< / tr >
< tr >
< td > Bitcoin< / td >
< td > bc1qs5hamvytnkllgml89flzhcyt3l4a3u4gs8lvvp< / td >
< / tr >
2023-10-02 08:26:26 +00:00
< tr >
< td > Monero< / td >
< td > 44hdEpAYXkB2VwkWz6LR9zZhcaG8zrUzn21aPy1HSdcsjT51fPdpMV8hkf5QQdHKs9VsAs3so5Vq5easdBbzmcifGcqfxfw< / td >
< / tr >
2022-09-19 23:59:24 +00:00
< / tbody >
< / table >
2023-10-08 18:58:12 +00:00
{% if v and v.truescore >= TRUESCORE_MINIMUM and DONATE_LINK != DEFAULT_CONFIG_VALUE %}
2023-08-23 22:15:53 +00:00
< li class = "pl-2 pb-4" >
2023-10-10 09:38:46 +00:00
If you donate via {{DONATE_SERVICE}}, please first < a href = "/settings/security#site-settings-email-section" > verify your email on the site< / a > , and then use that same email on {{DONATE_SERVICE}} to get your < a rel = "nofollow noopener" href = "{{DONATE_LINK}}" > {{patron}} rewards< / a > automatically!
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-08-23 22:12:32 +00:00
If you donate crypto, please let us know by < a href = "/contact" > sending us a 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 >
2022-10-10 05:22:18 +00:00
{% endblock %}