{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2025 JWP Consulting GK #} {% extends "workspace/workspace_settings_base.html" %} {% load i18n %} {% load projectify %} {% load rules %} {% block title %} {% blocktrans with workspace_title=workspace.title %}{{ workspace_title }} billing - Projectify{% endblocktrans %} {% endblock title %} {% block workspace_settings_content %} {% has_perm "corporate.can_update_customer" user workspace as can_update_customer %}
{% if not can_update_customer %}

{% trans "Permission required" %}

{% trans "You don't have permission to edit billing settings. Please ask the workspace owner to make changes to billing." %}

{% elif workspace.customer.subscription_status == "ACTIVE" %}

{% trans "Subscription status: Paid workspace" %}

{% trans "You have a paid workspace. You can review your billing details and seat count using the 'Edit billing details' button below." %}

{% blocktrans with price=price_per_seat %}Monthly total (${{ price }} per seat/month):{% endblocktrans %}

{% blocktrans with total=monthly_total %}${{ total }}{% endblocktrans %}

{% trans "Number of seats:" %}

{% blocktrans with total_seats=workspace.customer.seats remaining_seats=seats_remaining %}{{ total_seats }} seats in total, {{ remaining_seats }} seats remaining{% endblocktrans %}

{% csrf_token %} {% include "projectify/forms/submit.html" with text=_("Edit billing details") %}
{% elif workspace.customer.subscription_status == "UNPAID" or workspace.customer.subscription_status == "CANCELLED" %}

{% if workspace.customer.subscription_status == "UNPAID" %} {% trans "Trial mode" %} {% else %} {% trans "Subscription cancelled" %} {% endif %}

{% if workspace.customer.subscription_status == "UNPAID" %} {% trans "You are currently using this workspace in trial mode. To create a subscription and use all available features for this workspace, please continue using the checkout below. Alternatively, you can enter a coupon code further below." %} {% else %} {% trans "Your subscription has been cancelled. If you want to reactivate your subscription, please resubscribe using the checkout form below." %} {% endif %}

{% csrf_token %}

{% trans "Checkout" %}

{% trans "Select the amount of workspace seats. For each team member that is invited or added, a seat is used up." %}

{{ billing_form }} {% include "projectify/forms/submit.html" with text=_("Go to checkout") name="action" value="checkout" %}
{% csrf_token %}

{% trans "Use a coupon code" %}

{% trans "If someone has given you a coupon code, you can use it here to upgrade your workspace. Please refer to the details given to you for more information on what features will be unlocked for your workspace. If you have any questions, please ask the person who gave you the coupon code or contact us." %}

{{ coupon_form }} {% include "projectify/forms/submit.html" with text=_("Redeem coupon code") name="action" value="redeem_coupon" %}
{% elif workspace.customer.subscription_status == "CUSTOM" %}

{% trans "Custom subscription active" %}

{% trans "You have activated a custom subscription for this workspace using a coupon code. If you have any questions about your subscription or if you would like to make changes, please contact us." %}

{% endif %}
{% trans "Contact us if you have any questions regarding billing." %}
{% anchor href="mailto:hello@projectifyapp.com" label="hello@projectifyapp.com" %}
{% endblock workspace_settings_content %}