Billing
{# grandfather case #} {% if request.user.is_grandfathered %} Currently and forever on the Grandfather Plan. Rejoice eternally. {% endif %} {# monero case #} {% if not request.user.is_grandfathered and request.user.monero_address %} {% if request.user.is_premium %}Currently on Premium Plan.
Our Premium Plan costs 0.05 XMR per year and includes all features including the ability to set a custom domain.
Your Monero address is:
{{ request.user.monero_address }}
{% else %}
Currently on Free Plan.
Our Premium Plan costs 0.05 XMR per year and includes all features including the ability to set a custom domain.
Subscribe by sending 0.05 XMR to the Monero address below.
{{ request.user.monero_address }}
Please allow 48H for the transaction to be verified and mataroa to get up-to-date.
{% endif %} {% endif %} {# stripe case #} {% if not request.user.is_grandfathered and not request.user.monero_address %} {# stripe case - premium intro #} {% if request.user.is_premium %}Currently on Premium Plan.
- Last payment of $9 was charged {{ current_period_start|date:"F j, Y" }}.
- Next payment will be at {{ current_period_end|date:"F j, Y" }}.
- $0.45 – 5% of your previous payment was used to fund CO₂ removal.
Currently on Free Plan.
Our Premium Plan costs $9 per year and includes all features including the ability to set a custom domain.
mataroa.blog is also participating in Stripe Climate and will contribute 5% of its subscription revenues to remove CO₂ from the atmosphere.
{% endif %} {# stripe case - payment cards #} {% if payment_methods %}Cards:
-
{% for pm in payment_methods %}
{% if pm.is_default %}
- {{ pm.brand|capfirst }} {{ pm.last4 }} (exp. {{ pm.exp_month }}/{{ pm.exp_year }}) — default {% if not request.user.is_premium %} | remove {% endif %} {% endif %} {% endfor %} {% for pm in payment_methods %} {% if not pm.is_default %}
- {{ pm.brand|capfirst }} {{ pm.last4 }} (exp. {{ pm.exp_month }}/{{ pm.exp_year }}) — | remove {% endif %} {% endfor %}
Invoices:
-
{% for invoice in invoice_list %}
- {{ invoice.created|date }} {{ invoice.created|time:"H:i:s" }} — see invoice | download pdf {% endfor %}
{% if payment_methods %}
{% else %} Subscribe to Premium » {% endif %}