$def with (work)
$_("There's no wrong answer here.")
$_("Please separate with commas.") $_("For example:") cheese, Roman Empire, psychology
$ subjects = [] $for s in work.get_subjects(): $ s = s.replace('"', '""') $subjects.append('"' + s + '"' if ',' in s else s)
$_("For example:") Theodore Roosevelt, Julian of Norwich, Tintin
$ subjects = [] $for s in work.subject_people: $ s = s.replace('"', '""') $subjects.append('"' + s + '"' if ',' in s else s)
$_("For example:") London, Atlantis, Omaha
$ subjects = [] $for s in work.subject_places: $ s = s.replace('"', '""') $subjects.append('"' + s + '"' if ',' in s else s)
$_("For example:") 1984, The Middle Ages, 1810-1890
$ subjects = [] $for s in work.subject_times: $ s = s.replace('"', '""') $subjects.append('"' + s + '"' if ',' in s else s)