decidim-elections 0.23.6 → 0.24.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (324) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/app/assets/config/admin/decidim_votings_manifest.css +0 -0
  4. data/app/assets/config/admin/decidim_votings_manifest.js +4 -0
  5. data/app/assets/config/decidim_elections_manifest.css +3 -0
  6. data/app/assets/config/decidim_elections_manifest.js +6 -0
  7. data/app/assets/config/decidim_votings_manifest.css +3 -0
  8. data/app/assets/config/decidim_votings_manifest.js +0 -0
  9. data/app/assets/images/decidim/votings/icon.svg +1 -0
  10. data/app/assets/javascripts/decidim/elections/admin/pending_action.js.es6 +16 -0
  11. data/app/assets/javascripts/decidim/elections/admin/vote_statistics.js.es6 +11 -0
  12. data/app/assets/javascripts/decidim/elections/trustee_zone/key_ceremony.js.es6 +126 -0
  13. data/app/assets/javascripts/decidim/elections/trustee_zone/tally.js.es6 +104 -0
  14. data/app/assets/javascripts/decidim/elections/trustee_zone.js.es6 +54 -0
  15. data/app/assets/javascripts/decidim/elections/vote.js.es6 +107 -160
  16. data/app/assets/javascripts/decidim/elections/vote_questions.component.js.es6 +129 -0
  17. data/app/assets/javascripts/decidim/elections/vote_verify.js.es6 +71 -0
  18. data/app/assets/javascripts/decidim/votings/admin/monitoring_committee_members_form.js.es6 +35 -0
  19. data/app/assets/javascripts/decidim/votings/admin/polling_officers_form.js.es6 +35 -0
  20. data/app/assets/javascripts/decidim/votings/admin/polling_officers_picker.js.es6 +35 -0
  21. data/app/assets/javascripts/decidim/votings/admin/polling_stations_form.js.es6 +5 -0
  22. data/app/assets/stylesheets/decidim/elections/elections.scss +0 -4
  23. data/app/assets/stylesheets/decidim/elections/focus/_accordion.scss +36 -0
  24. data/app/assets/stylesheets/decidim/elections/focus/_evote.scss +58 -0
  25. data/app/assets/stylesheets/decidim/elections/trustee_zone.scss +24 -0
  26. data/app/assets/stylesheets/decidim/votings/votings/_votings-header.scss +99 -0
  27. data/app/assets/stylesheets/decidim/votings/votings/_votings-home-banner.scss +11 -0
  28. data/app/assets/stylesheets/decidim/votings/votings.scss +1 -0
  29. data/app/cells/decidim/votings/content_block_cell.rb +17 -0
  30. data/app/cells/decidim/votings/content_blocks/highlighted_votings/show.erb +30 -0
  31. data/app/cells/decidim/votings/content_blocks/highlighted_votings_cell.rb +33 -0
  32. data/app/cells/decidim/votings/content_blocks/highlighted_votings_settings_form/show.erb +3 -0
  33. data/app/cells/decidim/votings/content_blocks/highlighted_votings_settings_form_cell.rb +19 -0
  34. data/app/cells/decidim/votings/content_blocks/landing_page/attachments_and_folders_cell.rb +15 -0
  35. data/app/cells/decidim/votings/content_blocks/landing_page/description_cell.rb +15 -0
  36. data/app/cells/decidim/votings/content_blocks/landing_page/elections_cell.rb +15 -0
  37. data/app/cells/decidim/votings/content_blocks/landing_page/header_cell.rb +15 -0
  38. data/app/cells/decidim/votings/content_blocks/landing_page/metrics_cell.rb +15 -0
  39. data/app/cells/decidim/votings/content_blocks/landing_page/polling_stations_cell.rb +15 -0
  40. data/app/cells/decidim/votings/content_blocks/landing_page/stats_cell.rb +15 -0
  41. data/app/cells/decidim/votings/content_blocks/landing_page/timeline_cell.rb +15 -0
  42. data/app/cells/decidim/votings/polling_officers/polling_officers_picker/polling_officers.erb +12 -0
  43. data/app/cells/decidim/votings/polling_officers/polling_officers_picker/show.erb +14 -0
  44. data/app/cells/decidim/votings/polling_officers/polling_officers_picker_cell.rb +73 -0
  45. data/app/cells/decidim/votings/voting_cell.rb +19 -0
  46. data/app/cells/decidim/votings/voting_m/data.erb +21 -0
  47. data/app/cells/decidim/votings/voting_m/footer.erb +5 -0
  48. data/app/cells/decidim/votings/voting_m_cell.rb +94 -0
  49. data/app/commands/decidim/elections/admin/add_user_as_trustee.rb +81 -0
  50. data/app/commands/decidim/elections/admin/create_election.rb +2 -1
  51. data/app/commands/decidim/elections/admin/end_vote.rb +63 -0
  52. data/app/commands/decidim/elections/admin/publish_results.rb +59 -0
  53. data/app/commands/decidim/elections/admin/remove_trustee_from_participatory_space.rb +37 -0
  54. data/app/commands/decidim/elections/admin/setup_election.rb +160 -0
  55. data/app/commands/decidim/elections/admin/start_key_ceremony.rb +63 -0
  56. data/app/commands/decidim/elections/admin/start_tally.rb +63 -0
  57. data/app/commands/decidim/elections/admin/start_vote.rb +63 -0
  58. data/app/commands/decidim/elections/admin/update_action_status.rb +47 -0
  59. data/app/commands/decidim/elections/admin/update_answer_selection.rb +41 -0
  60. data/app/commands/decidim/elections/admin/update_trustee_participatory_space.rb +40 -0
  61. data/app/commands/decidim/elections/trustee_zone/update_election_bulletin_board_status.rb +39 -0
  62. data/app/commands/decidim/elections/trustee_zone/update_trustee.rb +41 -0
  63. data/app/commands/decidim/elections/voter/cast_vote.rb +59 -0
  64. data/app/commands/decidim/elections/voter/update_vote_status.rb +70 -0
  65. data/app/commands/decidim/votings/admin/create_monitoring_committee_member.rb +99 -0
  66. data/app/commands/decidim/votings/admin/create_polling_officer.rb +99 -0
  67. data/app/commands/decidim/votings/admin/create_polling_station.rb +59 -0
  68. data/app/commands/decidim/votings/admin/create_voting.rb +59 -0
  69. data/app/commands/decidim/votings/admin/destroy_monitoring_committee_member.rb +51 -0
  70. data/app/commands/decidim/votings/admin/destroy_polling_officer.rb +52 -0
  71. data/app/commands/decidim/votings/admin/destroy_polling_station.rb +40 -0
  72. data/app/commands/decidim/votings/admin/manage_polling_station.rb +64 -0
  73. data/app/commands/decidim/votings/admin/publish_voting.rb +40 -0
  74. data/app/commands/decidim/votings/admin/unpublish_voting.rb +40 -0
  75. data/app/commands/decidim/votings/admin/update_polling_station.rb +50 -0
  76. data/app/commands/decidim/votings/admin/update_voting.rb +85 -0
  77. data/app/constraints/decidim/votings/current_component.rb +28 -0
  78. data/app/constraints/decidim/votings/current_voting.rb +43 -0
  79. data/app/controllers/concerns/decidim/elections/orderable.rb +2 -2
  80. data/app/controllers/concerns/decidim/polling_officers/admin/filterable.rb +58 -0
  81. data/app/controllers/concerns/decidim/polling_stations/admin/filterable.rb +57 -0
  82. data/app/controllers/concerns/decidim/votings/admin/filterable.rb +27 -0
  83. data/app/controllers/concerns/decidim/votings/admin/voting_admin.rb +48 -0
  84. data/app/controllers/concerns/decidim/votings/needs_voting.rb +44 -0
  85. data/app/controllers/concerns/decidim/votings/orderable.rb +32 -0
  86. data/app/controllers/decidim/elections/admin/answers_controller.rb +32 -0
  87. data/app/controllers/decidim/elections/admin/elections_controller.rb +2 -2
  88. data/app/controllers/decidim/elections/admin/feedback_forms_controller.rb +55 -0
  89. data/app/controllers/decidim/elections/admin/steps_controller.rb +96 -0
  90. data/app/controllers/decidim/elections/admin/trustees_participatory_spaces_controller.rb +89 -0
  91. data/app/controllers/decidim/elections/elections_controller.rb +5 -1
  92. data/app/controllers/decidim/elections/feedbacks_controller.rb +38 -0
  93. data/app/controllers/decidim/elections/trustee_zone/application_controller.rb +45 -0
  94. data/app/controllers/decidim/elections/trustee_zone/elections_controller.rb +35 -0
  95. data/app/controllers/decidim/elections/trustee_zone/trustees_controller.rb +36 -0
  96. data/app/controllers/decidim/elections/votes_controller.rb +54 -2
  97. data/app/controllers/decidim/votings/admin/application_controller.rb +26 -0
  98. data/app/controllers/decidim/votings/admin/component_permissions_controller.rb +13 -0
  99. data/app/controllers/decidim/votings/admin/components_controller.rb +15 -0
  100. data/app/controllers/decidim/votings/admin/monitoring_committee_members_controller.rb +62 -0
  101. data/app/controllers/decidim/votings/admin/polling_officers_controller.rb +66 -0
  102. data/app/controllers/decidim/votings/admin/polling_stations_controller.rb +92 -0
  103. data/app/controllers/decidim/votings/admin/voting_attachment_collections_controller.rb +22 -0
  104. data/app/controllers/decidim/votings/admin/voting_attachments_controller.rb +21 -0
  105. data/app/controllers/decidim/votings/admin/votings_controller.rb +124 -0
  106. data/app/controllers/decidim/votings/admin/votings_landing_page_content_blocks_controller.rb +44 -0
  107. data/app/controllers/decidim/votings/admin/votings_landing_page_controller.rb +46 -0
  108. data/app/controllers/decidim/votings/application_controller.rb +26 -0
  109. data/app/controllers/decidim/votings/polling_officer_zone/application_controller.rb +33 -0
  110. data/app/controllers/decidim/votings/polling_officer_zone/polling_officers_controller.rb +17 -0
  111. data/app/controllers/decidim/votings/polling_officer_zone/polling_stations_controller.rb +22 -0
  112. data/app/controllers/decidim/votings/votings_controller.rb +98 -0
  113. data/app/events/decidim/elections/trustees/notify_new_trustee_event.rb +28 -0
  114. data/app/events/decidim/elections/trustees/notify_trustee_new_election_event.rb +14 -0
  115. data/app/events/decidim/elections/votes/vote_accepted_event.rb +24 -0
  116. data/app/events/decidim/votings/polling_officers/polling_station_assigned_event.rb +44 -0
  117. data/app/forms/decidim/elections/admin/action_form.rb +34 -0
  118. data/app/forms/decidim/elections/admin/answer_form.rb +3 -2
  119. data/app/forms/decidim/elections/admin/election_form.rb +3 -2
  120. data/app/forms/decidim/elections/admin/setup_form.rb +79 -0
  121. data/app/forms/decidim/elections/admin/trustees_participatory_space_form.rb +22 -0
  122. data/app/forms/decidim/elections/admin/vote_period_form.rb +37 -0
  123. data/app/forms/decidim/elections/ballot/verify_vote_form.rb +29 -0
  124. data/app/forms/decidim/elections/trustee_zone/trustee_form.rb +26 -0
  125. data/app/forms/decidim/elections/voter/encrypted_vote_form.rb +49 -0
  126. data/app/forms/decidim/votings/admin/monitoring_committee_member_form.rb +27 -0
  127. data/app/forms/decidim/votings/admin/polling_officer_form.rb +27 -0
  128. data/app/forms/decidim/votings/admin/polling_station_form.rb +58 -0
  129. data/app/forms/decidim/votings/admin/voting_form.rb +71 -0
  130. data/app/helpers/decidim/elections/admin/answers_helper.rb +19 -0
  131. data/app/helpers/decidim/elections/admin/steps_helper.rb +23 -0
  132. data/app/helpers/decidim/elections/admin/trustees_participatory_spaces_helper.rb +31 -0
  133. data/app/helpers/decidim/elections/elections_helper.rb +29 -0
  134. data/app/helpers/decidim/votings/admin/polling_officers_picker_helper.rb +29 -0
  135. data/app/helpers/decidim/votings/votings_helper.rb +20 -0
  136. data/app/models/decidim/elections/action.rb +13 -0
  137. data/app/models/decidim/elections/election.rb +54 -3
  138. data/app/models/decidim/elections/elections_trustee.rb +11 -0
  139. data/app/models/decidim/elections/question.rb +19 -0
  140. data/app/models/decidim/elections/trustee.rb +26 -0
  141. data/app/models/decidim/elections/trustees_participatory_space.rb +13 -0
  142. data/app/models/decidim/elections/vote.rb +15 -0
  143. data/app/models/decidim/votings/monitoring_committee_member.rb +24 -0
  144. data/app/models/decidim/votings/polling_officer.rb +76 -0
  145. data/app/models/decidim/votings/polling_station.rb +64 -0
  146. data/app/models/decidim/votings/voting.rb +138 -0
  147. data/app/permissions/decidim/elections/admin/permissions.rb +50 -10
  148. data/app/permissions/decidim/elections/permissions.rb +20 -2
  149. data/app/permissions/decidim/elections/trustee_zone/permissions.rb +32 -0
  150. data/app/permissions/decidim/votings/admin/permissions.rb +127 -0
  151. data/app/permissions/decidim/votings/permissions.rb +40 -0
  152. data/app/permissions/decidim/votings/polling_officer_zone/permissions.rb +32 -0
  153. data/app/presenters/decidim/elections/admin_log/election_presenter.rb +1 -1
  154. data/app/presenters/decidim/elections/trustee_presenter.rb +24 -0
  155. data/app/presenters/decidim/votings/admin_log/voting_presenter.rb +45 -0
  156. data/app/presenters/decidim/votings/polling_station_presenter.rb +27 -0
  157. data/app/presenters/decidim/votings/voting_presenter.rb +36 -0
  158. data/app/queries/decidim/elections/admin/pending_actions.rb +20 -0
  159. data/app/queries/decidim/elections/admin/votes_for_statistics.rb +24 -0
  160. data/app/queries/decidim/elections/elections_finished_to_end.rb +19 -0
  161. data/app/queries/decidim/elections/elections_ready_to_start.rb +25 -0
  162. data/app/queries/decidim/elections/trustees/by_participatory_space.rb +24 -0
  163. data/app/queries/decidim/elections/trustees/by_participatory_space_trustee_ids.rb +24 -0
  164. data/app/queries/decidim/elections/votes/election_votes.rb +19 -0
  165. data/app/queries/decidim/elections/votes/pending_votes.rb +20 -0
  166. data/app/queries/decidim/elections/votes/user_election_last_vote.rb +26 -0
  167. data/app/queries/decidim/elections/votes/user_votes.rb +19 -0
  168. data/app/queries/decidim/votings/admin/admin_users.rb +39 -0
  169. data/app/queries/decidim/votings/admin/polling_officers_join_polling_stations.rb +33 -0
  170. data/app/queries/decidim/votings/admin/polling_officers_join_polling_stations_and_user.rb +34 -0
  171. data/app/queries/decidim/votings/admin/polling_officers_join_user.rb +32 -0
  172. data/app/queries/decidim/votings/organization_prioritized_votings.rb +21 -0
  173. data/app/queries/decidim/votings/organization_promoted_votings.rb +16 -0
  174. data/app/queries/decidim/votings/organization_published_votings.rb +19 -0
  175. data/app/queries/decidim/votings/organization_votings.rb +16 -0
  176. data/app/queries/decidim/votings/prioritized_votings.rb +13 -0
  177. data/app/queries/decidim/votings/published_votings.rb +12 -0
  178. data/app/services/decidim/votings/voting_search.rb +46 -0
  179. data/app/views/decidim/elections/admin/answers/index.html.erb +12 -0
  180. data/app/views/decidim/elections/admin/elections/index.html.erb +13 -1
  181. data/app/views/decidim/elections/admin/proposals_imports/new.html.erb +1 -1
  182. data/app/views/decidim/elections/admin/questions/index.html.erb +5 -1
  183. data/app/views/decidim/elections/admin/shared/_trustees_secondary_nav.html.erb +3 -0
  184. data/app/views/decidim/elections/admin/steps/_create_election.html.erb +38 -0
  185. data/app/views/decidim/elections/admin/steps/_created.html.erb +16 -0
  186. data/app/views/decidim/elections/admin/steps/_key_ceremony.html.erb +16 -0
  187. data/app/views/decidim/elections/admin/steps/_key_ceremony_ended.html.erb +15 -0
  188. data/app/views/decidim/elections/admin/steps/_tally.html.erb +17 -0
  189. data/app/views/decidim/elections/admin/steps/_tally_ended.html.erb +9 -0
  190. data/app/views/decidim/elections/admin/steps/_vote.html.erb +21 -0
  191. data/app/views/decidim/elections/admin/steps/_vote_ended.html.erb +15 -0
  192. data/app/views/decidim/elections/admin/steps/_vote_stats.html.erb +31 -0
  193. data/app/views/decidim/elections/admin/steps/index.html.erb +43 -0
  194. data/app/views/decidim/elections/admin/trustees_participatory_spaces/_form.html.erb +19 -0
  195. data/app/views/decidim/elections/admin/trustees_participatory_spaces/index.html.erb +64 -0
  196. data/app/views/decidim/elections/admin/trustees_participatory_spaces/new.html.erb +7 -0
  197. data/app/views/decidim/elections/elections/_preview.html.erb +26 -0
  198. data/app/views/decidim/elections/elections/_results.html.erb +47 -0
  199. data/app/views/decidim/elections/elections/show.html.erb +43 -18
  200. data/app/views/decidim/elections/trustee_zone/elections/_backup_modal.html.erb +24 -0
  201. data/app/views/decidim/elections/trustee_zone/elections/_key_ceremony_steps.html.erb +44 -0
  202. data/app/views/decidim/elections/trustee_zone/elections/_restore_modal.html.erb +25 -0
  203. data/app/views/decidim/elections/trustee_zone/elections/_tally_steps.html.erb +43 -0
  204. data/app/views/decidim/elections/trustee_zone/elections/show.html.erb +38 -0
  205. data/app/views/decidim/elections/trustee_zone/elections/update.js.erb +5 -0
  206. data/app/views/decidim/elections/trustee_zone/trustees/show.html.erb +102 -0
  207. data/app/views/decidim/elections/votes/_election_votes_confirmed.html.erb +38 -17
  208. data/app/views/decidim/elections/votes/_election_votes_failed.html.erb +21 -0
  209. data/app/views/decidim/elections/votes/_election_votes_question.html.erb +4 -4
  210. data/app/views/decidim/elections/votes/cast_failed.js.erb +1 -0
  211. data/app/views/decidim/elections/votes/cast_success.js.erb +1 -0
  212. data/app/views/decidim/elections/votes/new.html.erb +41 -33
  213. data/app/views/decidim/elections/votes/verify.html.erb +78 -0
  214. data/app/views/decidim/votings/admin/monitoring_committee_members/_form.html.erb +27 -0
  215. data/app/views/decidim/votings/admin/monitoring_committee_members/index.html.erb +41 -0
  216. data/app/views/decidim/votings/admin/monitoring_committee_members/new.html.erb +7 -0
  217. data/app/views/decidim/votings/admin/polling_officers/_form.html.erb +27 -0
  218. data/app/views/decidim/votings/admin/polling_officers/index.html.erb +50 -0
  219. data/app/views/decidim/votings/admin/polling_officers/new.html.erb +7 -0
  220. data/app/views/decidim/votings/admin/polling_stations/_form.html.erb +40 -0
  221. data/app/views/decidim/votings/admin/polling_stations/edit.html.erb +7 -0
  222. data/app/views/decidim/votings/admin/polling_stations/index.html.erb +55 -0
  223. data/app/views/decidim/votings/admin/polling_stations/new.html.erb +7 -0
  224. data/app/views/decidim/votings/admin/votings/_form.html.erb +63 -0
  225. data/app/views/decidim/votings/admin/votings/edit.html.erb +31 -0
  226. data/app/views/decidim/votings/admin/votings/index.html.erb +87 -0
  227. data/app/views/decidim/votings/admin/votings/new.html.erb +13 -0
  228. data/app/views/decidim/votings/admin/votings/polling_officers_picker.html.erb +2 -0
  229. data/app/views/decidim/votings/polling_officer_zone/polling_officers/show.html.erb +42 -0
  230. data/app/views/decidim/votings/polling_officer_zone/polling_stations/show.html.erb +1 -0
  231. data/app/views/decidim/votings/votings/_count.html.erb +1 -0
  232. data/app/views/decidim/votings/votings/_filters.html.erb +25 -0
  233. data/app/views/decidim/votings/votings/_filters_small_view.html.erb +23 -0
  234. data/app/views/decidim/votings/votings/_promoted_voting.html.erb +27 -0
  235. data/app/views/decidim/votings/votings/_voting_details.html.erb +7 -0
  236. data/app/views/decidim/votings/votings/_votings.html.erb +25 -0
  237. data/app/views/decidim/votings/votings/index.html.erb +42 -0
  238. data/app/views/decidim/votings/votings/index.js.erb +10 -0
  239. data/app/views/decidim/votings/votings/show.html.erb +20 -0
  240. data/app/views/layouts/decidim/_voting_header.html.erb +16 -0
  241. data/app/views/layouts/decidim/admin/voting.html.erb +101 -0
  242. data/app/views/layouts/decidim/voting.html.erb +16 -0
  243. data/config/initializers/decidim_bulletin_board.rb +23 -0
  244. data/config/locales/ca.yml +53 -20
  245. data/config/locales/cs.yml +641 -7
  246. data/config/locales/de.yml +635 -6
  247. data/config/locales/el.yml +0 -6
  248. data/config/locales/en.yml +636 -6
  249. data/config/locales/es-MX.yml +7 -11
  250. data/config/locales/es-PY.yml +6 -10
  251. data/config/locales/es.yml +15 -19
  252. data/config/locales/fi-plain.yml +636 -7
  253. data/config/locales/fi.yml +637 -8
  254. data/config/locales/fr-CA.yml +422 -6
  255. data/config/locales/fr.yml +422 -6
  256. data/config/locales/gl.yml +63 -8
  257. data/config/locales/it.yml +97 -10
  258. data/config/locales/ja.yml +8 -10
  259. data/config/locales/lv.yml +0 -6
  260. data/config/locales/nl.yml +498 -6
  261. data/config/locales/no.yml +0 -5
  262. data/config/locales/pl.yml +570 -7
  263. data/config/locales/pt.yml +0 -10
  264. data/config/locales/ro-RO.yml +0 -44
  265. data/config/locales/sv.yml +8 -12
  266. data/config/locales/tr-TR.yml +114 -6
  267. data/config/locales/zh-CN.yml +0 -10
  268. data/db/migrate/20200915142713_add_questionnaire_to_existing_elections.rb +29 -0
  269. data/db/migrate/20200918153813_create_decidim_elections_trustees_participatory_spaces.rb +13 -0
  270. data/db/migrate/20200918153824_create_decidim_elections_elections_trustees.rb +10 -0
  271. data/db/migrate/20200918153835_create_decidim_elections_trustees.rb +12 -0
  272. data/db/migrate/20201026163334_add_blocked_at_and_bb_status_to_elections.rb +8 -0
  273. data/db/migrate/20201028090110_add_votes_to_decidim_elections_answers.rb +7 -0
  274. data/db/migrate/20201028135614_add_selected_to_decidim_elections_answers.rb +7 -0
  275. data/db/migrate/20201209110653_create_decidim_elections_votes.rb +14 -0
  276. data/db/migrate/20201216091123_add_name_to_trustees.rb +7 -0
  277. data/db/migrate/20210113113818_add_message_id_to_decidim_elections_votes.rb +7 -0
  278. data/db/migrate/20210113120115_create_decidim_elections_votings.rb +20 -0
  279. data/db/migrate/20210114100749_add_published_at_to_decidim_votings_votings.rb +7 -0
  280. data/db/migrate/20210114111850_add_user_to_decidim_elections_votes.rb +7 -0
  281. data/db/migrate/20210120164634_add_promoted_to_voting.rb +7 -0
  282. data/db/migrate/20210125124801_add_voting_type_to_voting_voting.rb +7 -0
  283. data/db/migrate/20210129124956_create_decidim_elections_actions.rb +14 -0
  284. data/db/migrate/20210204132111_add_votings_polling_stations.rb +19 -0
  285. data/db/migrate/20210208090441_add_polling_officers_to_votings.rb +12 -0
  286. data/db/migrate/20210210090738_add_votings_polling_station_references_to_votings_polling_officer.rb +8 -0
  287. data/db/migrate/20210216074707_add_monitoring_committee_member.rb +12 -0
  288. data/db/seeds/city.jpeg +0 -0
  289. data/lib/decidim/api/election_answer_type.rb +23 -0
  290. data/lib/decidim/api/election_question_type.rb +22 -0
  291. data/lib/decidim/api/election_type.rb +27 -0
  292. data/lib/decidim/api/elections_type.rb +32 -0
  293. data/lib/decidim/api/trustee_type.rb +16 -0
  294. data/lib/decidim/api/voting_type.rb +20 -0
  295. data/lib/decidim/elections/admin_engine.rb +42 -1
  296. data/lib/decidim/elections/answer_serializer.rb +48 -0
  297. data/lib/decidim/elections/api.rb +11 -0
  298. data/lib/decidim/elections/component.rb +367 -24
  299. data/lib/decidim/elections/engine.rb +8 -1
  300. data/lib/decidim/elections/test/factories.rb +201 -4
  301. data/lib/decidim/elections/trustee_zone.rb +10 -0
  302. data/lib/decidim/elections/trustee_zone_engine.rb +35 -0
  303. data/lib/decidim/elections/version.rb +1 -1
  304. data/lib/decidim/elections.rb +19 -2
  305. data/lib/decidim/votings/admin.rb +10 -0
  306. data/lib/decidim/votings/admin_engine.rb +71 -0
  307. data/lib/decidim/votings/api.rb +7 -0
  308. data/lib/decidim/votings/engine.rb +147 -0
  309. data/lib/decidim/votings/participatory_space.rb +92 -0
  310. data/lib/decidim/votings/polling_officer_zone.rb +10 -0
  311. data/lib/decidim/votings/polling_officer_zone_engine.rb +33 -0
  312. data/lib/decidim/votings/query_extensions.rb +43 -0
  313. data/lib/decidim/votings/test/capybara_polling_officers_picker.rb +49 -0
  314. data/lib/decidim/votings/test/factories.rb +83 -0
  315. data/lib/decidim/votings/voting_serializer.rb +54 -0
  316. data/lib/decidim/votings.rb +16 -0
  317. data/lib/tasks/decidim_elections.rake +68 -5
  318. metadata +304 -21
  319. data/app/types/decidim/elections/election_answer_type.rb +0 -24
  320. data/app/types/decidim/elections/election_question_type.rb +0 -25
  321. data/app/types/decidim/elections/election_type.rb +0 -27
  322. data/app/types/decidim/elections/elections_type.rb +0 -32
  323. data/config/i18n-tasks.yml +0 -10
  324. data/lib/decidim/elections/bulletin_board_client.rb +0 -35
@@ -0,0 +1,129 @@
1
+ /**
2
+ * Vote Questions component.
3
+ */
4
+
5
+ ((exports) => {
6
+ class VoteQuestionsComponent {
7
+ constructor($voteWrapper) {
8
+ this.$voteWrapper = $voteWrapper;
9
+ this.$continueButton = this.$voteWrapper.find("a.focus__next");
10
+ this.$confirmButton = this.$voteWrapper.find("a.focus__next.confirm");
11
+ this.$continueSpan = this.$voteWrapper.find("span.disabled-continue");
12
+ this.$currentStep = "";
13
+ this.$currentStepMaxSelection = "";
14
+ this.$answerCounter = 0;
15
+ this.voteCasted = false;
16
+ exports.onbeforeunload = () => {
17
+ if (this.voteCasted) {
18
+ return null;
19
+ }
20
+ return "";
21
+ }
22
+ }
23
+
24
+ init() {
25
+ this.setCurrentStep();
26
+ this.toggleContinueButton();
27
+ this.$confirmButton.addClass("show").removeClass("hide");
28
+ $(".evote__counter-min").text(this.$answerCounter);
29
+ this.answerCounter();
30
+ this.disableCheckbox();
31
+ }
32
+
33
+ setCurrentStep() {
34
+ this.$currentStep = this.$voteWrapper.find(".focus__step:visible")
35
+ this.setSelections();
36
+ this.onSelectionChange();
37
+ }
38
+
39
+ toggleContinueButton() {
40
+ if (this.checkAnswers()) {
41
+ // next step enabled
42
+ this.$continueButton.addClass("show").removeClass("hide")
43
+ this.$continueSpan.addClass("hide").removeClass("show")
44
+ } else {
45
+ // next step disabled
46
+ this.$continueButton.addClass("hide").removeClass("show")
47
+ this.$continueSpan.addClass("show").removeClass("hide")
48
+ }
49
+ }
50
+
51
+ // check if answers are correctly checked
52
+ checkAnswers() {
53
+ const currentAnswersChecked = $(`#${this.$currentStep.attr("id")} .answer_input:checked`).length
54
+ const notaAnswerChecked = $(`#${this.$currentStep.attr("id")} .nota_input:checked`).length
55
+
56
+ return ((currentAnswersChecked >= 1 || notaAnswerChecked > 0) && (currentAnswersChecked <= this.$currentStepMaxSelection));
57
+ }
58
+
59
+ answerCounter() {
60
+ let checked = $(`#${this.$currentStep.attr("id")} .answer_input:checked`).length
61
+ $(".evote__counter-min").text(checked);
62
+ }
63
+
64
+ // disable checkboxes if NOTA option is selected
65
+ disableCheckbox() {
66
+ $("[data-disabled-by]").on("click", (event) => {
67
+ if ($(event.target).attr("aria-disabled") || $(event.target).hasClass("is-disabled")) {
68
+ event.preventDefault();
69
+ }
70
+ });
71
+
72
+ $("[data-disable-check]").on("change", (event) => {
73
+ let checkId = $(event.target).attr("id");
74
+ let checkStatus = event.target.checked;
75
+
76
+ this.$currentStep.find(`[data-disabled-by='#${checkId}']`).each((_index, element) => {
77
+ if (checkStatus) {
78
+ $(element).addClass("is-disabled");
79
+ $(element).find("input[type=checkbox]").prop("checked", false);
80
+ $(element).find("input[type=checkbox]").attr("aria-disabled", "");
81
+ } else {
82
+ $(element).removeClass("is-disabled");
83
+ $(element).find("input[type=checkbox]").removeAttr("aria-disabled");
84
+ }
85
+ });
86
+ });
87
+ }
88
+
89
+ setSelections() {
90
+ this.$currentStepMaxSelection = this.$currentStep.find(".evote__options").data("max-selection")
91
+ }
92
+
93
+
94
+ onSelectionChange() {
95
+ let $voteOptions = this.$currentStep.find(".evote__options");
96
+ $voteOptions.on("change", () => {
97
+ this.toggleContinueButton();
98
+ this.toggleConfirmAnswers();
99
+ this.answerCounter();
100
+ });
101
+ }
102
+
103
+ // receive confirmed answers
104
+ toggleConfirmAnswers() {
105
+ $(".answer_input:checked").each((_index, element) => {
106
+ const confirmedAnswer = $(".evote__confirm").find(`#${element.value}`);
107
+ $(confirmedAnswer).removeClass("hide")
108
+ })
109
+
110
+ $(".answer_input").not(":checked").each((_index, element) => {
111
+ const confirmedAnswer = $(".evote__confirm").find(`#${element.value}`);
112
+ $(confirmedAnswer).addClass("hide")
113
+ })
114
+
115
+ $(".nota_input:checked").each((_index, element) => {
116
+ const confirmedAnswer = $(".evote__confirm").find(`.${element.value}`);
117
+ $(confirmedAnswer).removeClass("hide")
118
+ })
119
+
120
+ $(".nota_input").not(":checked").each((_index, element) => {
121
+ const confirmedAnswer = $(".evote__confirm").find(`.${element.value}`);
122
+ $(confirmedAnswer).addClass("hide")
123
+ })
124
+ }
125
+ }
126
+
127
+ exports.Decidim = exports.Decidim || {};
128
+ exports.Decidim.VoteQuestionsComponent = VoteQuestionsComponent;
129
+ })(window)
@@ -0,0 +1,71 @@
1
+ /* eslint-disable require-jsdoc, prefer-template, func-style, id-length, no-use-before-define, init-declarations, no-invalid-this */
2
+ /* eslint no-unused-vars: ["error", { "args": "none" }] */
3
+ // = require decidim/bulletin_board/decidim-bulletin_board
4
+
5
+ $(() => {
6
+ const { Client } = decidimBulletinBoard;
7
+ const $voteVerifyWrapper = $(".vote-verify-wrapper");
8
+ const $verifySubmitButton = $voteVerifyWrapper.find("a.focus__next.confirm");
9
+
10
+ let $formData = $voteVerifyWrapper.find(".vote-identifier");
11
+
12
+ function initStep() {
13
+ toggleVerifyButton();
14
+ onVoteIdentifierChange();
15
+ }
16
+
17
+ initStep()
18
+
19
+ function onVoteIdentifierChange() {
20
+ $formData.on("keyup input", (event) => {
21
+ toggleVerifyButton();
22
+ hideSuccessCallout();
23
+ hideErrorCallout();
24
+ });
25
+ }
26
+
27
+ function toggleVerifyButton() {
28
+ if ($formData.val().length > 5) {
29
+ $($verifySubmitButton).removeClass("disabled")
30
+ } else {
31
+ $($verifySubmitButton).addClass("disabled")
32
+ }
33
+ }
34
+
35
+ function hideSuccessCallout() {
36
+ $voteVerifyWrapper.find(".verify-vote-success").addClass("hide");
37
+ }
38
+
39
+ function hideErrorCallout() {
40
+ $voteVerifyWrapper.find(".verify-vote-error").addClass("hide");
41
+ }
42
+
43
+ $verifySubmitButton.on("click", (event) => {
44
+ event.preventDefault();
45
+ verifyVoteIdentifier();
46
+ });
47
+
48
+ function verifyVoteIdentifier() {
49
+ const bulletinBoardClient = new Client({
50
+ apiEndpointUrl: $voteVerifyWrapper.data("apiEndpointUrl"),
51
+ wsEndpointUrl: $voteVerifyWrapper.data("websocketUrl")
52
+ });
53
+
54
+ bulletinBoardClient.getLogEntry({
55
+ electionUniqueId: $voteVerifyWrapper.data("electionUniqueId"),
56
+ contentHash: $formData.val()
57
+ }).then((result) => {
58
+ if (result) {
59
+ hideErrorCallout();
60
+ $voteVerifyWrapper.find(".verify-vote-success").removeClass("hide");
61
+ } else {
62
+ hideSuccessCallout();
63
+ $voteVerifyWrapper.find(".verify-vote-error").removeClass("hide");
64
+ }
65
+ })
66
+ }
67
+
68
+ $(document).on("on.zf.toggler", (event) => {
69
+ initStep()
70
+ });
71
+ });
@@ -0,0 +1,35 @@
1
+ ((exports) => {
2
+ const { createFieldDependentInputs } = exports.DecidimAdmin;
3
+
4
+ const $participantType = $("#monitoring_committee_member_existing_user");
5
+
6
+ createFieldDependentInputs({
7
+ controllerField: $participantType,
8
+ wrapperSelector: ".user-fields",
9
+ dependentFieldsSelector: ".user-fields--email",
10
+ dependentInputSelector: "input",
11
+ enablingCondition: ($field) => {
12
+ return $field.val() === "false"
13
+ }
14
+ });
15
+
16
+ createFieldDependentInputs({
17
+ controllerField: $participantType,
18
+ wrapperSelector: ".user-fields",
19
+ dependentFieldsSelector: ".user-fields--name",
20
+ dependentInputSelector: "input",
21
+ enablingCondition: ($field) => {
22
+ return $field.val() === "false"
23
+ }
24
+ });
25
+
26
+ createFieldDependentInputs({
27
+ controllerField: $participantType,
28
+ wrapperSelector: ".user-fields",
29
+ dependentFieldsSelector: ".user-fields--user-picker",
30
+ dependentInputSelector: "input",
31
+ enablingCondition: ($field) => {
32
+ return $field.val() === "true"
33
+ }
34
+ });
35
+ })(window);
@@ -0,0 +1,35 @@
1
+ ((exports) => {
2
+ const { createFieldDependentInputs } = exports.DecidimAdmin;
3
+
4
+ const $participantType = $("#polling_officer_existing_user");
5
+
6
+ createFieldDependentInputs({
7
+ controllerField: $participantType,
8
+ wrapperSelector: ".user-fields",
9
+ dependentFieldsSelector: ".user-fields--email",
10
+ dependentInputSelector: "input",
11
+ enablingCondition: ($field) => {
12
+ return $field.val() === "false"
13
+ }
14
+ });
15
+
16
+ createFieldDependentInputs({
17
+ controllerField: $participantType,
18
+ wrapperSelector: ".user-fields",
19
+ dependentFieldsSelector: ".user-fields--name",
20
+ dependentInputSelector: "input",
21
+ enablingCondition: ($field) => {
22
+ return $field.val() === "false"
23
+ }
24
+ });
25
+
26
+ createFieldDependentInputs({
27
+ controllerField: $participantType,
28
+ wrapperSelector: ".user-fields",
29
+ dependentFieldsSelector: ".user-fields--user-picker",
30
+ dependentInputSelector: "input",
31
+ enablingCondition: ($field) => {
32
+ return $field.val() === "true"
33
+ }
34
+ });
35
+ })(window);
@@ -0,0 +1,35 @@
1
+ $(() => {
2
+ const $content = $(".picker-content"),
3
+ pickerMore = $content.data("picker-more"),
4
+ pickerPath = $content.data("picker-path"),
5
+ toggleNoPollingOfficers = () => {
6
+ const showNoPollingOfficers = $("#polling_officers_list li:visible").length === 0
7
+ $("#no_polling_officers").toggle(showNoPollingOfficers)
8
+ }
9
+
10
+ let jqxhr = null
11
+
12
+ toggleNoPollingOfficers()
13
+
14
+ $(".data_picker-modal-content").on("change keyup", "#polling_officers_filter", (event) => {
15
+ const filter = event.target.value.toLowerCase()
16
+
17
+ if (pickerMore) {
18
+ if (jqxhr !== null) {
19
+ jqxhr.abort()
20
+ }
21
+
22
+ $content.html("<div class='loading-spinner'></div>")
23
+ jqxhr = $.get(`${pickerPath}?q=${filter}`, (data) => {
24
+ $content.html(data)
25
+ jqxhr = null
26
+ toggleNoPollingOfficers()
27
+ })
28
+ } else {
29
+ $("#polling_officers_list li").each((index, li) => {
30
+ $(li).toggle(li.textContent.toLowerCase().includes(filter))
31
+ })
32
+ toggleNoPollingOfficers()
33
+ }
34
+ })
35
+ })
@@ -0,0 +1,5 @@
1
+ (() => {
2
+ const { attachGeocoding } = window.Decidim;
3
+ const $form = $(".edit_polling_station, .new_polling_station");
4
+ attachGeocoding($form.find("#polling_station_address"));
5
+ })(window);
@@ -1,9 +1,5 @@
1
1
  @import "focus/*";
2
2
 
3
- li.card-data__item{
4
- flex-direction: inherit;
5
- }
6
-
7
3
  .card__icondata ul li:not(:first-child) strong,
8
4
  .card__block ul li:not(:first-child) strong{
9
5
  font-size: 100%;
@@ -0,0 +1,36 @@
1
+ .accordion{
2
+ background: transparent;
3
+
4
+ .accordion-title{
5
+ font-size: $global-font-size;
6
+ color: inherit;
7
+ border: 0;
8
+ border-radius: 0;
9
+
10
+ span{
11
+ cursor: move;
12
+ }
13
+
14
+ &:focus{
15
+ background: transparent;
16
+ }
17
+ }
18
+
19
+ .accordion-item{
20
+ // Override Foundation
21
+ &:first-child > :first-child,
22
+ &:last-child:not(.is-active) > .accordion-title{
23
+ border: 0;
24
+ border-radius: 0;
25
+ }
26
+ }
27
+
28
+ .accordion-content{
29
+ border: 0;
30
+
31
+ .tabs-title > a[aria-selected="true"],
32
+ .tabs-content{
33
+ background: transparent;
34
+ }
35
+ }
36
+ }
@@ -1,3 +1,8 @@
1
+ .vote-wrapper{
2
+ display: flex;
3
+ flex-grow: 1;
4
+ }
5
+
1
6
  .evote{
2
7
  $checkfocus: 1px dotted rgba(black, .5);
3
8
  $checkfocus-offset: .1em;
@@ -276,4 +281,57 @@
276
281
  &__poll-id{
277
282
  overflow-wrap: anywhere;
278
283
  }
284
+
285
+ &__preview{
286
+ .accordion-title::before{
287
+ font-size: 1.5rem;
288
+ margin-top: -.75rem;
289
+ color: $anchor-color;
290
+ font-weight: normal;
291
+ }
292
+ }
293
+
294
+ &__preview-question{
295
+ border: $border;
296
+ font-weight: 600;
297
+
298
+ &:not(:first-child){
299
+ border-top: 0;
300
+ }
301
+
302
+ .label{
303
+ margin-left: .5rem;
304
+ }
305
+ }
306
+
307
+ &__preview-result{
308
+ line-height: 1.2;
309
+ margin-bottom: 1rem;
310
+ }
311
+
312
+ &__preview-option{
313
+ margin-bottom: -.2rem;
314
+ font-size: 1rem;
315
+ }
316
+
317
+ &__preview-bar{
318
+ display: flex;
319
+ align-items: center;
320
+
321
+ .progress{
322
+ flex-grow: 1;
323
+ margin-right: 1rem;
324
+ }
325
+ }
326
+
327
+ &__preview-label{
328
+ font-size: .8rem;
329
+ margin-top: -.2rem;
330
+ }
331
+
332
+ &__preview-perc{
333
+ width: 2rem;
334
+ text-align: right;
335
+ font-weight: bold;
336
+ }
279
337
  }
@@ -0,0 +1,24 @@
1
+ #not_supported_browser,
2
+ #submit_identification_keys{
3
+ display: none;
4
+
5
+ &.visible{
6
+ display: inherit;
7
+
8
+ & + div{
9
+ display: none;
10
+ }
11
+ }
12
+ }
13
+
14
+ .step_status{
15
+ span{
16
+ display: none;
17
+ }
18
+
19
+ &[data-step-status="pending"] .pending,
20
+ &[data-step-status="processing"] .processing,
21
+ &[data-step-status="completed"] .completed{
22
+ display: block;
23
+ }
24
+ }
@@ -0,0 +1,99 @@
1
+ .votings-header{
2
+ margin-bottom: $margin-sm;
3
+
4
+ @include breakpoint(medium){
5
+ margin-bottom: $margin-m;
6
+ }
7
+
8
+ .heading2{
9
+ font-weight: bold;
10
+ }
11
+ }
12
+
13
+ .votings-header__main{
14
+ background-size: cover;
15
+ position: relative;
16
+ z-index: 0;
17
+ display: flex;
18
+ flex-direction: column;
19
+
20
+ &::after{
21
+ content: "";
22
+ display: block;
23
+ position: absolute;
24
+ z-index: -1;
25
+ top: 0;
26
+ width: 100%;
27
+ height: 100%;
28
+ background-color: rgba($black, .6);
29
+ }
30
+ }
31
+
32
+ .votings-header__container{
33
+ position: relative;
34
+ z-index: 1;
35
+ padding: 0 0 0 1rem;
36
+
37
+ @include breakpoint(mediumlarge){
38
+ display: flex;
39
+ align-items: stretch;
40
+
41
+ .columns{
42
+ > *{
43
+ height: 100%;
44
+ display: flex;
45
+ flex-direction: column;
46
+ justify-content: center;
47
+ }
48
+ }
49
+ }
50
+ }
51
+
52
+ .votings-header__info{
53
+ padding: 1rem 1.5rem 1rem 1rem;
54
+ text-align: center;
55
+
56
+ @include breakpoint(medium){
57
+ padding: 1rem 1.5rem 1rem 1rem;
58
+ }
59
+
60
+ @include breakpoint(mediumlarge){
61
+ padding-left: 2rem;
62
+ text-align: left;
63
+ }
64
+ }
65
+
66
+ .votings-header__extra{
67
+ background: rgba($dark-gray, .8);
68
+ color: $white;
69
+ text-align: center;
70
+ margin-left: auto;
71
+ margin-right: auto;
72
+ max-width: 16rem;
73
+ padding: 1rem;
74
+ margin-bottom: 1.5rem;
75
+
76
+ @include breakpoint(medium){
77
+ margin-left: -1rem;
78
+ margin-right: 0;
79
+ margin-bottom: 0;
80
+ max-width: 150%;
81
+ padding: 2rem 1rem;
82
+ }
83
+ }
84
+
85
+ .votings-header__extra-title{
86
+ display: block;
87
+ font-weight: 600;
88
+ font-size: 1rem;
89
+
90
+ @include breakpoint(medium){
91
+ font-size: 1.1rem;
92
+ }
93
+
94
+ line-height: 1;
95
+ }
96
+
97
+ .votings-header__extra-date{
98
+ font-weight: 900;
99
+ }
@@ -0,0 +1,11 @@
1
+ .votings-home-banner{
2
+ .votings-header__main{
3
+ &::after{
4
+ display: none;
5
+ }
6
+ }
7
+
8
+ .votings-header__container{
9
+ min-height: 8rem;
10
+ }
11
+ }
@@ -0,0 +1 @@
1
+ // @import "votings/*";
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ class ContentBlockCell < Decidim::Admin::ContentBlockCell
6
+ delegate :scoped_resource, to: :controller
7
+
8
+ def edit_content_block_path
9
+ decidim_votings.edit_voting_landing_page_content_block_path(scoped_resource, manifest_name)
10
+ end
11
+
12
+ def decidim_votings
13
+ Decidim::Votings::AdminEngine.routes.url_helpers
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,30 @@
1
+ <section class="wrapper-home home-section">
2
+ <div class="row" id="highlighted-votings">
3
+ <h3 class="section-heading"><%= t("active_votings", scope: i18n_scope) %></h3>
4
+ <div class="row collapse">
5
+ <div class="row small-up-1 smallmedium-up-2 mediumlarge-up-3
6
+ large-up-4 card-grid">
7
+ <% highlighted_votings.each do |voting| %>
8
+ <div class="column">
9
+ <%= link_to decidim_votings.voting_path(voting), class: "card card--voting card--mini" do %>
10
+ <div aria-hidden="true" class="card__image-top"
11
+ style="background-image:url(<%= voting.banner_image.url %>)"></div>
12
+ <div class="card__content">
13
+ <span class="card__title card__link"><%= translated_attribute voting.title %></span>
14
+ </div>
15
+ <% end %>
16
+ </div>
17
+ <% end %>
18
+ </div>
19
+ </div>
20
+ </div>
21
+ <div class="row" id="see-all-votings">
22
+ <div class="columns small-centered small-12
23
+ smallmedium-8 medium-6 large-4">
24
+ <%= link_to t("see_all_votings", scope: i18n_scope),
25
+ decidim_votings.votings_path,
26
+ class: "button expanded hollow button--sc home-section__cta",
27
+ title: t("votings_button_title", scope: i18n_scope) %>
28
+ </div>
29
+ </div>
30
+ </section>
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module ContentBlocks
6
+ class HighlightedVotingsCell < Decidim::ViewModel
7
+ delegate :current_user, to: :controller
8
+
9
+ def show
10
+ render if highlighted_votings.any?
11
+ end
12
+
13
+ def max_results
14
+ model.settings.max_results
15
+ end
16
+
17
+ def highlighted_votings
18
+ OrganizationPrioritizedVotings.new(current_organization, current_user)
19
+ .query
20
+ .limit(max_results)
21
+ end
22
+
23
+ def i18n_scope
24
+ "decidim.votings.pages.home.highlighted_votings"
25
+ end
26
+
27
+ def decidim_votings
28
+ Decidim::Votings::Engine.routes.url_helpers
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,3 @@
1
+ <% form.fields_for :settings, form.object.settings do |settings_fields| %>
2
+ <%= settings_fields.select :max_results, [4, 8, 12], prompt: "", label: label %>
3
+ <% end %>
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module ContentBlocks
6
+ class HighlightedVotingsSettingsFormCell < Decidim::ViewModel
7
+ alias form model
8
+
9
+ def content_block
10
+ options[:content_block]
11
+ end
12
+
13
+ def label
14
+ I18n.t("decidim.votings.admin.content_blocks.highlighted_votings.max_results")
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module ContentBlocks
6
+ module LandingPage
7
+ class AttachmentsAndFoldersCell < Decidim::ViewModel
8
+ def show
9
+ content_tag(:div, "AttachmentsAndFoldersCell")
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end