{% extends "gold/subscription_detail.html" %} {% load static %} {% load i18n %} {% load crispy_forms_filters %} {% block title %}{% trans "Ad-free projects" %}{% endblock %} {% block edit_content_subheader %} {% endblock edit_content_subheader %} {% block edit_content %} {% include "gold/partials/projects_list.html" with objects=projects gold_user=gold_user %}

{% trans "Add an ad-free project" %}

{% blocktrans trimmed %} For each project that you would like to remove ads, we ask for: {% endblocktrans %}

{% trans 'A $5 subscription for small businesses or personal projects.' %}
{% trans 'A $50 subscription for corporate supported open source projects.' %}
{% if gold_user.num_supported_projects > projects|length %}
{% csrf_token %} {{ form | crispy }}
{% else %}
{% blocktrans trimmed with gold_level=gold_user.get_level_display gold_projects_count=gold_user.num_supported_projects %} You can't make any more projects ad-free with your current Gold membership of {{ gold_level }}. You can either increase the level of your membership or change which projects you make ad-free. {% endblocktrans %}
{% endif %} {% endblock %}