{% extends "client/base.html" %} {% load i18n %} {% load admin_urls %} {% load rules %} {% block title %} {{client}} - {% trans "Referent information" %} {% endblock %} {% block subcontent %} {% has_perm 'sous_chef.edit' request.user as can_edit_data %}

{% trans 'Billing' %}
{% trans "Billing and payment information" %}.

{% if can_edit_data %} {% trans "Edit" %} {% endif %}
{% trans 'First Name' %}
{{client.billing_member.firstname}}
{% trans 'Last Name' %}
{{client.billing_member.lastname}}
{% trans 'Payment method' %}
{{client.get_billing_payment_type_display}}
{% trans 'Rate type' %}
{{client.get_rate_type_display}}
{% trans "Address" %}
{{client.billing_member.address.street}} {% if client.billing_member.address.apartment %}, {{client.billing_member.address.apartment}}{% endif %}
{{client.billing_member.address.city}} ({{client.billing_member.address.postal_code}})
{% endblock %}