X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/adee5f3fa0d69d1b5face1f8f32a6080f11ece41..84e0a92d17b4a782dee2c4b257ee0e5f66be9af6:/contact/models.py diff --git a/contact/models.py b/contact/models.py index 1c92610..5f031c2 100644 --- a/contact/models.py +++ b/contact/models.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -import yaml from django.db import models from django.utils.encoding import smart_unicode from django.utils.translation import ugettext_lazy as _ @@ -17,6 +16,7 @@ class Contact(models.Model): @staticmethod def pretty_print(value, for_html=False): if type(value) in (tuple, list, dict): + import yaml value = yaml.safe_dump(value, allow_unicode=True, default_flow_style=False) if for_html: value = smart_unicode(value).replace(u" ", unichr(160))