mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
Quick fix to hide account number in profile page when not owner user or root
This commit is contained in:
parent
95b22cafe0
commit
584025acf0
@ -57,7 +57,9 @@
|
|||||||
<p>
|
<p>
|
||||||
{% if get_subscriber(profile).is_subscribed() %}
|
{% if get_subscriber(profile).is_subscribed() %}
|
||||||
{% trans subscription_end=get_subscriber(profile).subscriptions.last().subscription_end %}Subscribed until {{ subscription_end }}{% endtrans %}<br/>
|
{% 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/>
|
{% trans %}Account number: {% endtrans %}{{ profile.customer.account_id }}<br/>
|
||||||
|
{% endif %}
|
||||||
{# Shows tokens bought by the user #}
|
{# Shows tokens bought by the user #}
|
||||||
{{ show_tokens(profile) }}
|
{{ show_tokens(profile) }}
|
||||||
{# Shows slots took by the user #}
|
{# Shows slots took by the user #}
|
||||||
|
Loading…
Reference in New Issue
Block a user