{% extends 'main/layout.html' %} {% block title %}Billing — Mataroa{% endblock %} {% block content %}

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.

{% endif %} {# stripe case - non-premium #} {% if not request.user.is_premium %}

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:

{% endif %} {# stripe case - premium add card #} {% if request.user.is_premium %}

Add new card »

{% endif %} {# stripe case - invoices for premium #} {% if request.user.is_premium %}

Invoices:

{% endif %} {# stripe case - non-premium controls #} {% if not request.user.is_premium %}

{% if payment_methods %}

{% csrf_token %}
{% else %} Subscribe to Premium » {% endif %}

{% endif %} {# stripe case - premium cancel #} {% if request.user.is_premium %}

Cancel subscription

{% endif %} {% endif %}
{% endblock %}