{% if not addon.needs_paypal() %}
{{ _('Your app is not currently accepting payments.') }}

{{ _('Set up payments.') }}

{% else %}
{% if not pending.paginator.count %}

{{ _('No pending refunds.') }}

{% else %} {{ base_th() }} {% for refund in pending.object_list %} {# Use the "cycle" tag when/if we upgrade Jinja #} {{ base_td(refund, amo) }} {% if refund.refund_reason %} {% endif %} {% endfor %}
{{ _('Action') }}
{{ action_form(refund) }}
{{ _('Refund Reason:') }} {{ refund.refund_reason }}
{% endif %} {{ pending|impala_paginator }}
{% endif %}