bornhack-website/src/profiles/models.py

69 lines
2.1 KiB
Python
Raw Normal View History

2015-10-03 01:07:05 +00:00
from django.contrib.auth.models import User
from django.db import models
from django.db.models.signals import post_save
from django.dispatch import receiver
from django.utils.translation import ugettext_lazy as _
from utils.models import UUIDModel, CreatedUpdatedModel
2015-10-03 01:07:05 +00:00
class Profile(CreatedUpdatedModel, UUIDModel):
class Meta:
verbose_name = _('Profile')
verbose_name_plural = _('Profiles')
user = models.OneToOneField(
User,
verbose_name=_('User'),
help_text=_('The django user this profile belongs to.'),
)
2017-04-13 15:44:46 +00:00
name = models.CharField(
max_length=200,
default='',
blank=True,
2017-07-11 20:50:31 +00:00
help_text='Your name or handle (only visible to team responsible and organisers)'
2017-04-13 15:44:46 +00:00
)
description = models.TextField(
default='',
blank=True,
help_text='Please include any info you think could be relevant, like drivers license, first aid certificates, crafts, skills and previous experience. Please also include availability if you are not there for the full week.',
)
2017-07-11 15:30:18 +00:00
public_credit_name = models.CharField(
blank=True,
max_length=100,
2017-07-11 20:50:31 +00:00
help_text='The name you want to appear on in the credits section of the public website (the People pages). Leave empty if you want no public credit.'
)
public_credit_name_approved = models.BooleanField(
default=False,
help_text='Check this box to approve this users public_credit_name. This will be unchecked automatically when the user edits public_credit_name'
2017-07-11 15:30:18 +00:00
)
2015-10-03 01:07:05 +00:00
@property
def email(self):
return self.user.email
def __str__(self):
return self.user.username
2017-07-11 20:50:31 +00:00
def approve_public_credit_name(self):
self.public_credit_name_approved = True
self.save()
@property
def approved_public_credit_name(self):
if self.public_credit_name_approved:
return self.public_credit_name
else:
return False
2015-10-03 01:07:05 +00:00
@receiver(post_save, sender=User)
def create_profile(sender, created, instance, **kwargs):
if created:
Profile.objects.create(user=instance)