Merged in [9666] from rcross@amsl.com:

Fixes #1723.  Area names hardcoded in Proceedings app.
 - Legacy-Id: 9680
Note: SVN reference [9666] has been migrated to Git commit 7b34252d29
This commit is contained in:
Henrik Levkowetz 2015-06-23 18:40:39 +00:00
commit d0cdc45fe8

View file

@ -78,7 +78,7 @@ def get_extras(meeting):
Gather "extras" which are one off groups. ie iab-wcit(86)
'''
groups = []
sessions = Session.objects.filter(meeting=meeting).exclude(group__parent__acronym__in=('app','gen','int','ops','rai','rtg','sec','tsv','irtf'))
sessions = Session.objects.filter(meeting=meeting).exclude(group__parent__type__in=('area','irtf'))
for session in sessions:
timeslot = get_timeslot(session)
if timeslot and timeslot.type.slug == 'session' and session.materials.all():