File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77import os
88import sys
99import re
10+ import timedelta
11+ from timedeltafield import TimedeltaField
1012
1113import debug # pyflakes:ignore
1214
1517# mostly used by json_dict()
1618#from django.template.defaultfilters import slugify, date as date_format, time as time_format
1719from django .template .defaultfilters import date as date_format
18- import timedelta
19-
20- from timedeltafield import TimedeltaField
20+ from django .utils .text import slugify
2121
2222from ietf .doc .models import Document
2323from ietf .group .models import Group
@@ -774,6 +774,7 @@ def slug(self):
774774
775775 if self .timeslot .type_id in ('break' , 'reg' , 'other' ):
776776 components .append (g .acronym )
777+ components .append (slugify (self .session .name ))
777778
778779 if self .timeslot .type_id in ('session' , 'plenary' ):
779780 if self .timeslot .type_id == "plenary" :
You can’t perform that action at this time.
0 commit comments