diff --git a/polls/admin.py b/polls/admin.py index 3d70f89..66a4b82 100644 --- a/polls/admin.py +++ b/polls/admin.py @@ -14,7 +14,6 @@ class QuestionAdmin(admin.ModelAdmin): ("Published date", {"fields": ["pub_date"], "classes": ["collapse"]}), ("End date", {"fields": ["end_date"], "classes": ["collapse"]}), ("Sentiment Vote count", {"fields": ["up_vote_count", "down_vote_count"]}), - ("Participant count", {"fields": ["participant_count"]}), ] list_display = ["question_text", "pub_date", "end_date", "was_published_recently", "can_vote"] inlines = [ChoiceInline] diff --git a/polls/templates/polls/index.html b/polls/templates/polls/index.html index f215620..d870900 100644 --- a/polls/templates/polls/index.html +++ b/polls/templates/polls/index.html @@ -82,7 +82,7 @@
{{ question.short_description }}
{{ question.short_description }}