no really
This commit is contained in:
parent
1aafae3843
commit
787a42952c
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ def company_split(name):
|
||||||
@register.simple_tag(takes_context=True)
|
@register.simple_tag(takes_context=True)
|
||||||
def special(context, user):
|
def special(context, user):
|
||||||
organiser = user.groups.filter(name='Conference organisers').exists()
|
organiser = user.groups.filter(name='Conference organisers').exists()
|
||||||
speaker = if user.speaker_profile and user.speaker_profile.presentations.count() != 0
|
speaker = if hasattr(user, "speaker_profile") and user.speaker_profile.presentations.count() != 0
|
||||||
volunteer = "Volunteer" in ticket_type(context)
|
volunteer = "Volunteer" in ticket_type(context)
|
||||||
|
|
||||||
if organiser:
|
if organiser:
|
||||||
|
|
Loading…
Reference in a new issue