Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
ideas/views: update detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
philli-m committed Dec 29, 2020
1 parent b5c3a2c commit 8747bb9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/ideas/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,25 +183,25 @@ def get_context_data(self, **kwargs):
self.object.pitch))
idea_list_1.append((_('Where will your project idea take place?'),
self.object.location))
idea_list_1.append((_('What is the local challenge?'),
idea_list_1.append((_('What is the specific societal challenge '
'faced by this region?'),
self.object.challenge))
idea_list_1.append((_('How does your idea strengthen democracy and '
'active citizenship at a local and community '
'level?'),
self.object.impact))
idea_list_1.append((_('Who are you doing it for?'),
self.object.target_group))
idea_list_1.append((_('How do you plan to get there?'),
self.object.plan))
idea_list_1.append((_('What are the expected results?'),
self.object.results))
idea_list_1.append((_('What is your story?'),
idea_list_1.append((_('How does your idea strengthen active '
'citizenship at a local and community level?'),
self.object.impact))
idea_list_1.append((_('Why is this idea important to you?'),
self.object.motivation))

budget_list.append((_('Funding requested from Civic Europe'),
self.object.budget_requested))
budget_list.append((_('Total budget'),
self.object.total_budget))
budget_list.append((_('Funding requested from Civic Europe'),
self.object.budget_requested))

idea_list_2.append((_('Major expenses'),
self.object.major_expenses))
Expand Down

0 comments on commit 8747bb9

Please sign in to comment.