From 94f15c9fe1d54ed1817f86a9cd00bd83e05e8329 Mon Sep 17 00:00:00 2001 From: yomguy Date: Wed, 13 Mar 2013 19:07:31 +0100 Subject: [PATCH] fix domain --- teleforma/views/pro.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5