From: yomguy Date: Wed, 13 Mar 2013 18:07:31 +0000 (+0100) Subject: fix domain X-Git-Tag: 2.8.1-pro~491^2~8^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=94f15c9fe1d54ed1817f86a9cd00bd83e05e8329;p=teleforma.git fix domain --- diff --git a/teleforma/views/pro.py b/teleforma/views/pro.py index 16a14886..5c30ce80 100644 --- a/teleforma/views/pro.py +++ b/teleforma/views/pro.py @@ -313,7 +313,7 @@ class AnswersView(ListView): context['first_name'] = user.first_name context['last_name'] = user.last_name context['rank'] = answer.question.rank - context['domain'] = site.name + context['domain'] = site.domain context['path'] = path context['title'] = title context['organization'] = organization @@ -372,7 +372,7 @@ class AnswersView(ListView): context['first_name'] = user.first_name context['last_name'] = user.last_name context['rank'] = answer.question.rank - context['domain'] = site.name + context['domain'] = site.domain context['path'] = path context['title'] = title context['organization'] = organization @@ -417,7 +417,7 @@ class AnswerDetailViewTest(DetailView): context['last_name'] = user.last_name context['rank'] = answer.question.rank - context['domain'] = site.name + context['domain'] = site.domain context['path'] = path context['title'] = title context['organization'] = organization