You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SlotKinds represent types of things on a schedule, some of which have presentations attached as content, some of which do not. In the pinax-symposion-project the schedule grid only renders a presentation if the slot.kind.label is 'talk' or 'tutorial', which leads to issues like pydata/conf_site#68
Back when I was working on SciPy 2014, we forked symposion and changed SlotKind to add presentation = models.BooleanField(default=True, help_text="Whether or not this slot is a presentation")
so that we could change the template conditional to {% if slot.kind.presentation %}
from {% if slot.kind.label == "talk" or slot.kind.label == "tutorial" %} (see _grid.html L16)
The text was updated successfully, but these errors were encountered:
Expand "kludge" that previously supported up to 4 schedule tracks so
that 5 tracks are supported. Additional tracks need to be called "Track
5" or "Tutorial Track 5".
This should be able to be removed when
pinax/symposion#74 is fixed.
SlotKinds represent types of things on a schedule, some of which have presentations attached as content, some of which do not. In the pinax-symposion-project the schedule grid only renders a presentation if the slot.kind.label is 'talk' or 'tutorial', which leads to issues like pydata/conf_site#68
Back when I was working on SciPy 2014, we forked symposion and changed SlotKind to add
presentation = models.BooleanField(default=True, help_text="Whether or not this slot is a presentation")
so that we could change the template conditional to
{% if slot.kind.presentation %}
from
{% if slot.kind.label == "talk" or slot.kind.label == "tutorial" %}
(see _grid.html L16)The text was updated successfully, but these errors were encountered: