Skip to content

Instantly share code, notes, and snippets.

@jerzyn
Created March 21, 2014 16:09
Show Gist options
  • Select an option

  • Save jerzyn/9689660 to your computer and use it in GitHub Desktop.

Select an option

Save jerzyn/9689660 to your computer and use it in GitHub Desktop.
Create a home page notification when the credit card details are missing
{% if current_account %}
{% if current_account.credit_card_required? and current_account.credit_card_missing? %}
<div class="missing_card">
<p>You have selected a paid API plan.
Please <a href="{{ urls.payment_details }}">enter your credit card</a>
to get access to your API key.</p>
</div>
{% endif %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment