Fixed some mistakes

This commit is contained in:
Antoine Bartuccio 2016-09-21 14:01:44 +02:00
parent 2d16b9c296
commit 748ad1c5c2
2 changed files with 1 additions and 8 deletions

View File

@ -234,12 +234,7 @@ class User(AbstractBaseUser):
@property
def is_office(self):
from club.models import Club
return Club.objects.filter(unix_name='laverie').first().get_membership_for(self)
@property
def is_launderette(self):
from club.models import Club
return Club.objects.filter(unix_name='').first().get_membership_for(self)
return Club.objects.filter(unix_name='ae').first().get_membership_for(self)
def save(self, *args, **kwargs):
create = False

View File

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