diff options
Diffstat (limited to 'archaeological_finds/wizards.py')
-rw-r--r-- | archaeological_finds/wizards.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py index 4d2a54f73..9effc3770 100644 --- a/archaeological_finds/wizards.py +++ b/archaeological_finds/wizards.py @@ -21,6 +21,7 @@ from django.conf import settings from django.core.exceptions import ObjectDoesNotExist from django.shortcuts import render_to_response from django.template import RequestContext +from django.utils.safestring import mark_safe from django.utils.translation import ugettext_lazy as _ from ishtar_common.wizards import Wizard, DeletionWizard, SourceWizard @@ -89,6 +90,6 @@ class FindSourceDeletionWizard(DeletionWizard): fields = ['item', 'title', 'source_type', 'authors',] class TreatmentSourceWizard(SourceWizard): - model = models.TreamentSource + model = models.TreatmentSource |