We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed4baf1 commit 99ed2d8Copy full SHA for 99ed2d8
.travis.yml
@@ -2,7 +2,7 @@ language: python
2
sudo: false
3
python:
4
- '2.7'
5
-- '3.4'
+- '3.5'
6
addons:
7
postgresql: "9.3"
8
junction/feedback/service.py
@@ -56,7 +56,7 @@ def get_choice_feedback_questions(conference_id):
56
schedule item type.
57
"""
58
qs = ChoiceFeedbackQuestion.objects.filter(
59
- conference_id=conference_id).select_related('allowed_values')
+ conference_id=conference_id).prefetch_related('allowed_values')
60
return _get_question_oragnized_by_type(qs)
61
62
requirements.txt
@@ -1,4 +1,4 @@
1
-Django==1.7.9
+Django==1.8.14
celery==3.1.18
djangorestframework==3.1.3
django-filter==0.10.0
0 commit comments