Quick fix to hide account number in profile page when not owner user or root

This commit is contained in:
Antoine Bartuccio 2016-09-18 22:50:10 +02:00
parent 95b22cafe0
commit 584025acf0

View File

@ -57,7 +57,9 @@
<p>
{% if get_subscriber(profile).is_subscribed() %}
{% trans subscription_end=get_subscriber(profile).subscriptions.last().subscription_end %}Subscribed until {{ subscription_end }}{% endtrans %}<br/>
{% if user == profile or user.is_root %}
{% trans %}Account number: {% endtrans %}{{ profile.customer.account_id }}<br/>
{% endif %}
{# Shows tokens bought by the user #}
{{ show_tokens(profile) }}
{# Shows slots took by the user #}