{% extends 'base.html' %} {% block title %}{{ _('Your Profile') }} - MetaBrainz Foundation{% endblock %} {% block content %}
Type:
{{ 'Commercial' if current_user.is_commercial else 'Non-commercial' }}
{% if current_user.is_commercial %}
Tier: {{ current_user.tier.name }}
{% endif %}
State:
{{ current_user.state|upper }}
NOTE: If you would like to change your account from non-commercial to commercial, please contact us.
{% endif %}
{{ _('Name:') }} {{ current_user.org_name or
'Unspecified'|safe }}
{{ _('Website URL:') }} {{ current_user.website_url or
'Unspecified'|safe }}
{{ _('API URL:') }} {{ current_user.api_url or
'Unspecified'|safe }}
{{ _('Please contact us if you wish for us to update this information.', contact_url=url_for('index.contact')) }}
{{ _('Name:') }} {{ current_user.contact_name }}
{{ _('Email:') }} {{ current_user.contact_email }}
{% if not current_user.is_commercial %}
{{ _('Datasets used:') }}
{% if current_user.datasets %}
{{ current_user.datasets|map(attribute="name")|join(", ") }}
{% endif %}
{% endif %}
Your support agreement has been completed -- thank you!
{{ _('You have permission to use any of the data published by the MetaBrainz Foundation. This includes data dumps released under a Creative Commons non-commercial license. Thank you for your support!') }}
{{ _('Note 1: If your support falls behind by more than 60 days, this permission may be withdrawn. You can always check your current permission status on this page.') }}
{{ _('Note 2: The IP addresses from which replication packets for the Live Data Feed are downloaded are logged.') }}
Your application for using the Live Data Feed has been rejected.
You do not have permission to use our data in a public commercial product.
{% elif current_user.state == 'pending' %}Your application for using the Live Data Feed is still pending.
You may use our data and APIs for evaluation/development purposes while your application is pending.
{% elif current_user.state == 'waiting' %}Your application for using the Live Data Feed is waiting to finalize our support agreement.
You may use our data and APIs for evaluation and development purposes, but you may not use the data in a public commercial product. Once you are nearing the public release of a product that contains our data, please contact us again to finalize our support agreement.
{% elif not current_user.good_standing %}Your use of the Live Data Feed is pending suspension.
Your account is in bad standing, which means that you are more than 60 days behind in support payments. If you think this is a mistake, please contact us.
{% else %} {{ _('Unknown. :(') }} {% endif %}Thank you for registering with us -- we really appreciate it!
{% endif %}Please proceed to our download page to download our datasets:
{{ _('This access token should be considered private. Don\'t check this token into any publicly visible version control systems and similar places. If the token has been exposed, you should immediately generate a new one! When you generate a new token, your current token is revoked.') }}
{% if current_user.token %}
{{ _('See the API documentation for more information.', api_docs_url=url_for('api_index.info')) }}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% if current_user.state == 'active' %} {% endif %} {% endblock %}