Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make EUR donations go to USD paypal account. #460

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions metabrainz/templates/payments/donate.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ <h1 class="page-title">{{ _('Make a Donation') }}</h1>

<h2>{{ _('Other ways to donate') }}</h2>

<h3>GitHub</h3>
<p>{{ _('If you use GitHub to sponsor your favourite projects, you can click below to Sponsor @metabrainz on GitHub Sponsors:') }}</p>
<p><a href="https://github.com/sponsors/metabrainz">https://github.com/sponsors/metabrainz</a></p>

<h3>{{ _('Non-US Bank transfer') }}</h3>
<p>{{ _('You can make a donation, or recurring donations, via bank transfer to the following IBAN:') }}</p>
<p><em style="margin-left: 2em">BE96 9670 3472 0205 (BIC: TRWIBEB1XXX)</em></p>
Expand All @@ -134,14 +138,6 @@ <h3>{{ _('Non-US Bank transfer') }}</h3>
<h3>{{ _('US Check') }}</h3>
<p>{{ _('Due to the increased unreliability of the US Postal Service we have stopped accepting paper checks. Sorry!') }}</p>

<h3>Flattr</h3>
<p>{{ _('If you use Flattr to donate to your favourite projects, you can click below to Flattr MetaBrainz:') }}</p>
<p><a href="https://flattr.com/profile/metabrainz ">https://flattr.com/profile/metabrainz</a></p>

<h3>GitHub</h3>
<p>{{ _('If you use GitHub to sponsor your favourite projects, you can click below to Sponsor @metabrainz on GitHub Sponsors:') }}</p>
<p><a href="https://github.com/sponsors/metabrainz">https://github.com/sponsors/metabrainz</a></p>

</div>
{% endblock %}

Expand All @@ -161,7 +157,7 @@ <h3>GitHub</h3>
},
Euro: {
code: "EUR",
paypal_id: '{{ config['PAYPAL_ACCOUNT_IDS']['EUR'] }}'
paypal_id: '{{ config['PAYPAL_ACCOUNT_IDS']['USD'] }}'
}
};

Expand Down
Loading