names & conditional display of audio in admin

This commit is contained in:
bkfox
2022-10-10 19:25:48 +02:00
parent e873ff71e8
commit 80cd5baa18
3 changed files with 8 additions and 7 deletions

View File

@ -52,7 +52,7 @@ sound_path_re = re.compile(
'^(?P<year>[0-9]{4})(?P<month>[0-9]{2})(?P<day>[0-9]{2})'
'(_(?P<hour>[0-9]{2})h(?P<minute>[0-9]{2}))?'
'(_(?P<n>[0-9]+))?'
'_?(?P<name>.*)$'
'_?[ -]*(?P<name>.*)$'
)