decidim-elections 0.27.4 → 0.28.0.rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (456) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +60 -3
  3. data/app/cells/decidim/elections/content_blocks/related_elections_cell.rb +13 -0
  4. data/app/cells/decidim/elections/election_cell.rb +7 -2
  5. data/app/cells/decidim/elections/election_g_cell.rb +23 -0
  6. data/app/cells/decidim/elections/election_metadata_cell.rb +57 -0
  7. data/app/cells/decidim/elections/election_preview/show.erb +24 -24
  8. data/app/cells/decidim/elections/election_results/progress_bar.erb +6 -7
  9. data/app/cells/decidim/elections/election_results/show.erb +36 -33
  10. data/app/cells/decidim/elections/election_s_cell.rb +10 -0
  11. data/app/cells/decidim/elections/election_vote_cta/show.erb +14 -26
  12. data/app/cells/decidim/elections/election_vote_cta_cell.rb +0 -9
  13. data/app/cells/decidim/elections/highlighted_elections_for_component/show.erb +18 -0
  14. data/app/cells/decidim/elections/highlighted_elections_for_component_cell.rb +50 -0
  15. data/app/cells/decidim/elections/remaining_time_callout/show.erb +1 -3
  16. data/app/cells/decidim/elections/voting_step_navigation/show.erb +21 -25
  17. data/app/cells/decidim/elections/voting_step_navigation_cell.rb +2 -2
  18. data/app/cells/decidim/votings/content_block_cell.rb +5 -1
  19. data/app/cells/decidim/votings/content_blocks/hero_cell.rb +53 -0
  20. data/app/cells/decidim/votings/content_blocks/hero_settings_form_cell.rb +15 -0
  21. data/app/cells/decidim/votings/content_blocks/highlighted_votings_cell.rb +12 -21
  22. data/app/cells/decidim/votings/content_blocks/highlighted_votings_settings_form/show.erb +1 -1
  23. data/app/cells/decidim/votings/content_blocks/main_data_cell.rb +34 -0
  24. data/app/cells/decidim/votings/content_blocks/metrics_cell.rb +17 -0
  25. data/app/cells/decidim/votings/content_blocks/polling_stations/show.erb +21 -0
  26. data/app/cells/decidim/votings/content_blocks/polling_stations_cell.rb +31 -0
  27. data/app/cells/decidim/votings/content_blocks/statistics_cell.rb +18 -0
  28. data/app/cells/decidim/votings/polling_officers/polling_officers_picker/show.erb +14 -13
  29. data/app/cells/decidim/votings/polling_officers/polling_officers_picker_cell.rb +19 -16
  30. data/app/cells/decidim/votings/polling_station_closure_certificate/show.erb +5 -7
  31. data/app/cells/decidim/votings/polling_station_closure_recount/show.erb +55 -59
  32. data/app/cells/decidim/votings/voting_cell.rb +7 -2
  33. data/app/cells/decidim/votings/voting_dropdown_metadata_cell.rb +19 -0
  34. data/app/cells/decidim/votings/voting_g_cell.rb +19 -0
  35. data/app/cells/decidim/votings/voting_map/show.erb +16 -0
  36. data/app/cells/decidim/votings/voting_map_cell.rb +28 -0
  37. data/app/cells/decidim/votings/voting_metadata_cell.rb +66 -0
  38. data/app/cells/decidim/votings/voting_s_cell.rb +10 -0
  39. data/app/commands/decidim/elections/admin/add_user_as_trustee.rb +5 -5
  40. data/app/commands/decidim/elections/admin/create_answer.rb +0 -1
  41. data/app/commands/decidim/elections/admin/create_election.rb +0 -1
  42. data/app/commands/decidim/elections/admin/destroy_answer.rb +0 -1
  43. data/app/commands/decidim/elections/admin/destroy_election.rb +0 -1
  44. data/app/commands/decidim/elections/admin/end_vote.rb +2 -2
  45. data/app/commands/decidim/elections/admin/import_proposals_to_elections.rb +1 -1
  46. data/app/commands/decidim/elections/admin/publish_election.rb +1 -1
  47. data/app/commands/decidim/elections/admin/publish_results.rb +2 -2
  48. data/app/commands/decidim/elections/admin/report_missing_trustee.rb +2 -2
  49. data/app/commands/decidim/elections/admin/setup_election.rb +2 -2
  50. data/app/commands/decidim/elections/admin/start_key_ceremony.rb +2 -2
  51. data/app/commands/decidim/elections/admin/start_tally.rb +2 -2
  52. data/app/commands/decidim/elections/admin/start_vote.rb +2 -2
  53. data/app/commands/decidim/elections/admin/unpublish_election.rb +1 -1
  54. data/app/commands/decidim/elections/admin/update_answer.rb +0 -1
  55. data/app/commands/decidim/elections/admin/update_answer_selection.rb +1 -1
  56. data/app/commands/decidim/elections/admin/update_election.rb +0 -1
  57. data/app/commands/decidim/elections/trustee_zone/update_election_bulletin_board_status.rb +3 -3
  58. data/app/commands/decidim/elections/voter/cast_vote.rb +1 -1
  59. data/app/commands/decidim/elections/voter/update_vote_status.rb +2 -2
  60. data/app/commands/decidim/votings/admin/create_ballot_style.rb +1 -1
  61. data/app/commands/decidim/votings/admin/create_monitoring_committee_member.rb +4 -4
  62. data/app/commands/decidim/votings/admin/create_polling_officer.rb +4 -4
  63. data/app/commands/decidim/votings/admin/create_polling_station.rb +1 -1
  64. data/app/commands/decidim/votings/admin/create_voting.rb +1 -1
  65. data/app/commands/decidim/votings/admin/destroy_ballot_style.rb +1 -1
  66. data/app/commands/decidim/votings/admin/destroy_monitoring_committee_member.rb +1 -1
  67. data/app/commands/decidim/votings/admin/destroy_polling_officer.rb +1 -1
  68. data/app/commands/decidim/votings/admin/manage_polling_station.rb +1 -1
  69. data/app/commands/decidim/votings/admin/monitoring_committee_validate_polling_station_closure.rb +1 -1
  70. data/app/commands/decidim/votings/admin/update_ballot_style.rb +1 -1
  71. data/app/commands/decidim/votings/admin/update_voting.rb +1 -1
  72. data/app/commands/decidim/votings/census/admin/create_dataset.rb +2 -2
  73. data/app/commands/decidim/votings/census/admin/create_datum.rb +3 -3
  74. data/app/commands/decidim/votings/census/admin/destroy_dataset.rb +1 -1
  75. data/app/commands/decidim/votings/census/admin/increment_dataset_processed_rows.rb +1 -1
  76. data/app/commands/decidim/votings/census/admin/launch_access_codes_generation.rb +1 -1
  77. data/app/commands/decidim/votings/census/admin/update_dataset.rb +1 -1
  78. data/app/commands/decidim/votings/certify_polling_station_closure.rb +1 -2
  79. data/app/commands/decidim/votings/create_polling_station_closure.rb +1 -1
  80. data/app/commands/decidim/votings/create_polling_station_results.rb +1 -1
  81. data/app/commands/decidim/votings/send_access_code.rb +5 -1
  82. data/app/commands/decidim/votings/sign_polling_station_closure.rb +2 -2
  83. data/app/commands/decidim/votings/voter/in_person_vote.rb +1 -1
  84. data/app/constraints/decidim/votings/current_voting.rb +1 -1
  85. data/app/controllers/concerns/decidim/elections/content_security_policy.rb +23 -0
  86. data/app/controllers/concerns/decidim/elections/has_vote_flow.rb +2 -2
  87. data/app/controllers/concerns/decidim/votings/admin/voting_admin.rb +1 -1
  88. data/app/controllers/concerns/decidim/votings/needs_voting.rb +1 -1
  89. data/app/controllers/decidim/elections/admin/answers_controller.rb +9 -10
  90. data/app/controllers/decidim/elections/admin/application_controller.rb +1 -0
  91. data/app/controllers/decidim/elections/admin/elections_controller.rb +7 -7
  92. data/app/controllers/decidim/elections/admin/feedback_forms_controller.rb +2 -2
  93. data/app/controllers/decidim/elections/admin/proposals_imports_controller.rb +3 -3
  94. data/app/controllers/decidim/elections/admin/questions_controller.rb +7 -7
  95. data/app/controllers/decidim/elections/admin/steps_controller.rb +4 -4
  96. data/app/controllers/decidim/elections/admin/trustees_participatory_spaces_controller.rb +2 -2
  97. data/app/controllers/decidim/elections/application_controller.rb +1 -0
  98. data/app/controllers/decidim/elections/elections_controller.rb +5 -2
  99. data/app/controllers/decidim/elections/trustee_zone/application_controller.rb +1 -0
  100. data/app/controllers/decidim/elections/trustee_zone/elections_controller.rb +2 -2
  101. data/app/controllers/decidim/elections/trustee_zone/trustees_controller.rb +3 -3
  102. data/app/controllers/decidim/elections/votes_controller.rb +19 -13
  103. data/app/controllers/decidim/votings/admin/monitoring_committee_election_results_controller.rb +11 -3
  104. data/app/controllers/decidim/votings/admin/monitoring_committee_members_controller.rb +3 -3
  105. data/app/controllers/decidim/votings/admin/monitoring_committee_polling_station_closures_controller.rb +3 -3
  106. data/app/controllers/decidim/votings/admin/polling_officers_controller.rb +3 -3
  107. data/app/controllers/decidim/votings/admin/polling_stations_controller.rb +3 -4
  108. data/app/controllers/decidim/votings/admin/voting_attachment_collections_controller.rb +5 -0
  109. data/app/controllers/decidim/votings/admin/voting_attachments_controller.rb +5 -0
  110. data/app/controllers/decidim/votings/admin/voting_publications_controller.rb +25 -0
  111. data/app/controllers/decidim/votings/admin/votings_controller.rb +2 -26
  112. data/app/controllers/decidim/votings/admin/votings_landing_page_content_blocks_controller.rb +1 -5
  113. data/app/controllers/decidim/votings/admin/votings_landing_page_controller.rb +4 -7
  114. data/app/controllers/decidim/votings/census/admin/census_controller.rb +2 -2
  115. data/app/controllers/decidim/votings/polling_officer_zone/closures_controller.rb +12 -12
  116. data/app/controllers/decidim/votings/polling_officer_zone/in_person_votes_controller.rb +17 -10
  117. data/app/controllers/decidim/votings/polling_officer_zone/polling_officers_controller.rb +1 -1
  118. data/app/controllers/decidim/votings/votings_controller.rb +7 -9
  119. data/app/events/decidim/elections/election_published_event.rb +1 -1
  120. data/app/events/decidim/elections/trustees/notify_new_trustee_event.rb +1 -1
  121. data/app/events/decidim/elections/trustees/notify_trustee_new_election_event.rb +1 -1
  122. data/app/events/decidim/elections/votes/vote_accepted_event.rb +1 -1
  123. data/app/events/decidim/votings/polling_officers/polling_station_assigned_event.rb +1 -1
  124. data/app/forms/decidim/elections/admin/answer_form.rb +1 -1
  125. data/app/forms/decidim/elections/admin/election_form.rb +1 -1
  126. data/app/forms/decidim/votings/admin/publish_results_form.rb +5 -5
  127. data/app/forms/decidim/votings/admin/voting_form.rb +1 -1
  128. data/app/forms/decidim/votings/admin/{polling_officer_form.rb → voting_user_role_form.rb} +1 -1
  129. data/app/forms/decidim/votings/census/frontend_fields.rb +1 -1
  130. data/app/forms/decidim/votings/census/in_person_fields.rb +8 -4
  131. data/app/forms/decidim/votings/closure_result_form.rb +2 -2
  132. data/app/helpers/decidim/elections/admin/trustees_participatory_spaces_helper.rb +4 -2
  133. data/app/helpers/decidim/elections/application_helper.rb +8 -0
  134. data/app/helpers/decidim/votings/map_helper.rb +22 -0
  135. data/app/helpers/decidim/votings/votings_helper.rb +33 -0
  136. data/app/jobs/decidim/votings/census/admin/create_datum_job.rb +1 -1
  137. data/app/jobs/decidim/votings/census/admin/generate_access_codes_job.rb +2 -2
  138. data/app/mailers/decidim/votings/access_code_mailer.rb +1 -1
  139. data/app/mailers/decidim/votings/census/export_mailer.rb +1 -1
  140. data/app/models/decidim/elections/trustee.rb +2 -2
  141. data/app/models/decidim/votings/ballot_style.rb +1 -1
  142. data/app/models/decidim/votings/polling_officer.rb +2 -2
  143. data/app/models/decidim/votings/polling_station.rb +1 -1
  144. data/app/packs/entrypoints/decidim_elections.js +12 -0
  145. data/app/packs/entrypoints/decidim_elections_admin.js +6 -0
  146. data/app/packs/entrypoints/decidim_votings.js +11 -0
  147. data/app/packs/entrypoints/decidim_votings_admin.js +10 -0
  148. data/app/packs/src/decidim/elections/admin/pending_action.js +10 -7
  149. data/app/packs/src/decidim/elections/admin/trustees_process.js +107 -104
  150. data/app/packs/src/decidim/elections/admin/vote_statistics.js +6 -3
  151. data/app/packs/src/decidim/elections/broken_promises_handler.js +9 -7
  152. data/app/packs/src/decidim/elections/election_log.js +126 -128
  153. data/app/packs/src/decidim/elections/trustee/key_ceremony.js +138 -139
  154. data/app/packs/src/decidim/elections/trustee/tally.js +122 -118
  155. data/app/packs/src/decidim/elections/trustee/trustee_zone.js +9 -7
  156. data/app/packs/src/decidim/elections/voter/casting-vote.js +9 -7
  157. data/app/packs/src/decidim/elections/voter/new-vote.js +92 -71
  158. data/app/packs/src/decidim/elections/voter/setup-preview.js +0 -4
  159. data/app/packs/src/decidim/elections/voter/setup-vote.js +0 -4
  160. data/app/packs/src/decidim/elections/voter/verify-vote.js +11 -6
  161. data/app/packs/src/decidim/elections/voter/vote_questions.component.js +74 -28
  162. data/app/packs/src/decidim/votings/admin/polling_officers_picker.js +16 -31
  163. data/app/packs/src/decidim/votings/admin/polling_stations_form.js +4 -1
  164. data/app/packs/src/decidim/votings/admin/{polling_officers_form.js → voting_user_role_form.js} +1 -1
  165. data/app/packs/src/decidim/votings/in-person-vote.js +4 -4
  166. data/app/packs/src/decidim/votings/polling_officer_zone/edit-closure.js +4 -4
  167. data/app/packs/src/decidim/votings/polling_officer_zone/in-person-vote.js +1 -1
  168. data/app/packs/src/decidim/votings/polling_officer_zone/new-closure.js +6 -8
  169. data/app/packs/stylesheets/decidim/elections/elections.scss +200 -6
  170. data/app/packs/stylesheets/decidim/votings/admin/votings/_ballot-styles.scss +3 -3
  171. data/app/packs/stylesheets/decidim/votings/admin/votings/_monitoring-committee-polling-station-closures.scss +2 -2
  172. data/app/packs/stylesheets/decidim/votings/admin/votings/_results.scss +1 -1
  173. data/app/packs/stylesheets/decidim/votings/admin/votings.scss +20 -0
  174. data/app/packs/stylesheets/decidim/votings/votings.scss +53 -2
  175. data/app/permissions/decidim/votings/admin/permissions.rb +2 -2
  176. data/app/presenters/decidim/elections/admin_log/election_presenter.rb +2 -2
  177. data/app/presenters/decidim/elections/admin_log/trustee_presenter.rb +2 -2
  178. data/app/presenters/decidim/elections/trustee_presenter.rb +1 -1
  179. data/app/presenters/decidim/votings/admin_log/ballot_style_presenter.rb +2 -2
  180. data/app/presenters/decidim/votings/admin_log/monitoring_committee_member_presenter.rb +2 -2
  181. data/app/presenters/decidim/votings/admin_log/polling_officer_presenter.rb +2 -2
  182. data/app/presenters/decidim/votings/admin_log/polling_station_presenter.rb +2 -2
  183. data/app/presenters/decidim/votings/admin_log/voting_presenter.rb +2 -2
  184. data/app/presenters/decidim/votings/census/admin_log/dataset_presenter.rb +2 -2
  185. data/app/presenters/decidim/votings/voting_stats_presenter.rb +3 -42
  186. data/app/services/decidim/votings/census/access_codes_exporter.rb +1 -1
  187. data/app/services/decidim/votings/census_vote_flow.rb +3 -3
  188. data/app/views/decidim/elections/admin/answers/_form.html.erb +16 -18
  189. data/app/views/decidim/elections/admin/answers/edit.html.erb +21 -5
  190. data/app/views/decidim/elections/admin/answers/index.html.erb +33 -18
  191. data/app/views/decidim/elections/admin/answers/new.html.erb +21 -5
  192. data/app/views/decidim/elections/admin/elections/_form.html.erb +20 -19
  193. data/app/views/decidim/elections/admin/elections/edit.html.erb +16 -6
  194. data/app/views/decidim/elections/admin/elections/index.html.erb +72 -70
  195. data/app/views/decidim/elections/admin/elections/new.html.erb +16 -6
  196. data/app/views/decidim/elections/admin/proposals_imports/new.html.erb +36 -21
  197. data/app/views/decidim/elections/admin/questions/_form.html.erb +18 -20
  198. data/app/views/decidim/elections/admin/questions/edit.html.erb +20 -6
  199. data/app/views/decidim/elections/admin/questions/index.html.erb +50 -49
  200. data/app/views/decidim/elections/admin/questions/new.html.erb +20 -5
  201. data/app/views/decidim/elections/admin/steps/_create_election.html.erb +41 -36
  202. data/app/views/decidim/elections/admin/steps/_created.html.erb +2 -2
  203. data/app/views/decidim/elections/admin/steps/_key_ceremony.html.erb +7 -7
  204. data/app/views/decidim/elections/admin/steps/_key_ceremony_ended.html.erb +2 -2
  205. data/app/views/decidim/elections/admin/steps/_results_published.html.erb +4 -4
  206. data/app/views/decidim/elections/admin/steps/_tally_ended.html.erb +4 -4
  207. data/app/views/decidim/elections/admin/steps/_tally_started.html.erb +11 -11
  208. data/app/views/decidim/elections/admin/steps/_vote.html.erb +3 -3
  209. data/app/views/decidim/elections/admin/steps/_vote_ended.html.erb +2 -2
  210. data/app/views/decidim/elections/admin/steps/_vote_stats.html.erb +2 -2
  211. data/app/views/decidim/elections/admin/steps/index.html.erb +44 -37
  212. data/app/views/decidim/elections/admin/trustees_participatory_spaces/_form.html.erb +10 -14
  213. data/app/views/decidim/elections/admin/trustees_participatory_spaces/index.html.erb +57 -60
  214. data/app/views/decidim/elections/admin/trustees_participatory_spaces/new.html.erb +16 -5
  215. data/app/views/decidim/elections/elections/_elections.html.erb +9 -16
  216. data/app/views/decidim/elections/elections/election_log.html.erb +171 -179
  217. data/app/views/decidim/elections/elections/index.html.erb +18 -21
  218. data/app/views/decidim/elections/elections/index.js.erb +0 -5
  219. data/app/views/decidim/elections/elections/show.html.erb +63 -39
  220. data/app/views/decidim/elections/shared/_broken_promises_modal.html.erb +18 -27
  221. data/app/views/decidim/elections/trustee_zone/elections/_backup_modal.html.erb +10 -20
  222. data/app/views/decidim/elections/trustee_zone/elections/_key_ceremony_steps.html.erb +32 -27
  223. data/app/views/decidim/elections/trustee_zone/elections/_restore_modal.html.erb +11 -21
  224. data/app/views/decidim/elections/trustee_zone/elections/_tally_started_steps.html.erb +46 -41
  225. data/app/views/decidim/elections/trustee_zone/elections/show.html.erb +4 -6
  226. data/app/views/decidim/elections/trustee_zone/trustees/_no_public_keys.html.erb +30 -0
  227. data/app/views/decidim/elections/trustee_zone/trustees/_public_keys.html.erb +17 -0
  228. data/app/views/decidim/elections/trustee_zone/trustees/_table.html.erb +28 -0
  229. data/app/views/decidim/elections/trustee_zone/trustees/show.html.erb +21 -96
  230. data/app/views/decidim/elections/votes/_new_ballot_decision_step.html.erb +22 -26
  231. data/app/views/decidim/elections/votes/_new_confirm_step.html.erb +59 -47
  232. data/app/views/decidim/elections/votes/_new_encrypting_step.html.erb +8 -19
  233. data/app/views/decidim/elections/votes/_new_question.html.erb +12 -28
  234. data/app/views/decidim/elections/votes/_new_question_modal.html.erb +20 -23
  235. data/app/views/decidim/elections/votes/_onboarding_modal.html.erb +14 -22
  236. data/app/views/decidim/elections/votes/_show_casted.html.erb +28 -30
  237. data/app/views/decidim/elections/votes/_show_casting.html.erb +12 -19
  238. data/app/views/decidim/elections/votes/_show_failed.html.erb +20 -17
  239. data/app/views/decidim/elections/votes/new.html.erb +78 -61
  240. data/app/views/decidim/elections/votes/show.html.erb +12 -11
  241. data/app/views/decidim/elections/votes/verify.html.erb +40 -61
  242. data/app/views/decidim/votings/admin/ballot_styles/_form.html.erb +19 -19
  243. data/app/views/decidim/votings/admin/ballot_styles/edit.html.erb +16 -6
  244. data/app/views/decidim/votings/admin/ballot_styles/index.html.erb +50 -54
  245. data/app/views/decidim/votings/admin/ballot_styles/new.html.erb +16 -6
  246. data/app/views/decidim/votings/admin/monitoring_committee_election_results/_results.html.erb +43 -46
  247. data/app/views/decidim/votings/admin/monitoring_committee_election_results/index.html.erb +23 -25
  248. data/app/views/decidim/votings/admin/monitoring_committee_election_results/show.html.erb +5 -5
  249. data/app/views/decidim/votings/admin/monitoring_committee_members/_form.html.erb +19 -20
  250. data/app/views/decidim/votings/admin/monitoring_committee_members/index.html.erb +32 -34
  251. data/app/views/decidim/votings/admin/monitoring_committee_members/new.html.erb +17 -6
  252. data/app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/_closure_certificate_results.erb +1 -1
  253. data/app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/_closures.html.erb +53 -56
  254. data/app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/_elections.html.erb +22 -25
  255. data/app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/edit.html.erb +12 -11
  256. data/app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/show.html.erb +1 -1
  257. data/app/views/decidim/votings/admin/monitoring_committee_verify_elections/index.html.erb +37 -39
  258. data/app/views/decidim/votings/admin/polling_officers/_form.html.erb +19 -20
  259. data/app/views/decidim/votings/admin/polling_officers/index.html.erb +40 -41
  260. data/app/views/decidim/votings/admin/polling_officers/new.html.erb +17 -6
  261. data/app/views/decidim/votings/admin/polling_stations/_form.html.erb +25 -31
  262. data/app/views/decidim/votings/admin/polling_stations/edit.html.erb +17 -6
  263. data/app/views/decidim/votings/admin/polling_stations/index.html.erb +46 -47
  264. data/app/views/decidim/votings/admin/polling_stations/new.html.erb +17 -6
  265. data/app/views/decidim/votings/admin/votings/_form.html.erb +49 -52
  266. data/app/views/decidim/votings/admin/votings/edit.html.erb +35 -28
  267. data/app/views/decidim/votings/admin/votings/index.html.erb +58 -82
  268. data/app/views/decidim/votings/admin/votings/new.html.erb +16 -9
  269. data/app/views/decidim/votings/census/admin/census/_creating_data.html.erb +4 -4
  270. data/app/views/decidim/votings/census/admin/census/_export_codes.html.erb +3 -3
  271. data/app/views/decidim/votings/census/admin/census/_generate_codes.html.erb +8 -8
  272. data/app/views/decidim/votings/census/admin/census/_new_census.html.erb +8 -7
  273. data/app/views/decidim/votings/census/admin/census/_upload_info.html.erb +5 -5
  274. data/app/views/decidim/votings/census/admin/census/show.html.erb +7 -7
  275. data/app/views/decidim/votings/polling_officer_zone/closures/_answer_results_form_fields.html.erb +2 -3
  276. data/app/views/decidim/votings/polling_officer_zone/closures/_ballot_results_form_fields.html.erb +24 -35
  277. data/app/views/decidim/votings/polling_officer_zone/closures/_certify_form.html.erb +5 -9
  278. data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_count_error.html.erb +34 -48
  279. data/app/views/decidim/votings/polling_officer_zone/closures/_modal_ballots_results_count_error.html.erb +18 -18
  280. data/app/views/decidim/votings/polling_officer_zone/closures/_question_results_form_fields.html.erb +12 -17
  281. data/app/views/decidim/votings/polling_officer_zone/closures/_sign_form.html.erb +34 -49
  282. data/app/views/decidim/votings/polling_officer_zone/closures/edit.html.erb +50 -37
  283. data/app/views/decidim/votings/polling_officer_zone/closures/new.html.erb +57 -51
  284. data/app/views/decidim/votings/polling_officer_zone/closures/show.html.erb +44 -34
  285. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/_complete_voting.html.erb +40 -57
  286. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/_in_person_form.html.erb +34 -47
  287. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/_verify_document.html.erb +19 -22
  288. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/new.html.erb +12 -12
  289. data/app/views/decidim/votings/polling_officer_zone/in_person_votes/show.html.erb +22 -21
  290. data/app/views/decidim/votings/polling_officer_zone/polling_officers/_polling_station.html.erb +34 -41
  291. data/app/views/decidim/votings/polling_officer_zone/polling_officers/index.html.erb +9 -5
  292. data/app/views/decidim/votings/votings/_access_code_modal.html.erb +26 -31
  293. data/app/views/decidim/votings/votings/_check_fields.html.erb +19 -28
  294. data/app/views/decidim/votings/votings/_polling_officers_picker.html.erb +4 -0
  295. data/app/views/decidim/votings/votings/_votings.html.erb +5 -11
  296. data/app/views/decidim/votings/votings/check_census.html.erb +53 -53
  297. data/app/views/decidim/votings/votings/elections_log.html.erb +25 -22
  298. data/app/views/decidim/votings/votings/index.html.erb +24 -25
  299. data/app/views/decidim/votings/votings/index.js.erb +0 -5
  300. data/app/views/decidim/votings/votings/login.html.erb +51 -44
  301. data/app/views/decidim/votings/votings/show.html.erb +5 -7
  302. data/app/views/layouts/decidim/admin/voting.html.erb +11 -11
  303. data/app/views/layouts/decidim/admin/votings.html.erb +16 -0
  304. data/app/views/layouts/decidim/votings.html.erb +10 -14
  305. data/config/assets.rb +3 -28
  306. data/config/environment.rb +3 -0
  307. data/config/locales/ar.yml +0 -8
  308. data/config/locales/ca.yml +162 -216
  309. data/config/locales/cs.yml +155 -205
  310. data/config/locales/de.yml +160 -214
  311. data/config/locales/el.yml +160 -110
  312. data/config/locales/en.yml +183 -237
  313. data/config/locales/es-MX.yml +161 -215
  314. data/config/locales/es-PY.yml +160 -214
  315. data/config/locales/es.yml +160 -214
  316. data/config/locales/eu.yml +293 -218
  317. data/config/locales/fi-plain.yml +152 -206
  318. data/config/locales/fi.yml +157 -211
  319. data/config/locales/fr-CA.yml +167 -200
  320. data/config/locales/fr.yml +170 -203
  321. data/config/locales/ga-IE.yml +0 -40
  322. data/config/locales/gl.yml +2 -76
  323. data/config/locales/hu.yml +7 -52
  324. data/config/locales/it.yml +3 -245
  325. data/config/locales/ja.yml +176 -230
  326. data/config/locales/lt.yml +154 -181
  327. data/config/locales/lv.yml +0 -38
  328. data/config/locales/nl.yml +0 -214
  329. data/config/locales/no.yml +0 -128
  330. data/config/locales/pl.yml +3 -247
  331. data/config/locales/pt-BR.yml +1 -247
  332. data/config/locales/pt.yml +1 -248
  333. data/config/locales/ro-RO.yml +1 -143
  334. data/config/locales/sq-AL.yml +1 -0
  335. data/config/locales/sv.yml +20 -102
  336. data/config/locales/th-TH.yml +1 -0
  337. data/config/locales/tr-TR.yml +56 -118
  338. data/config/locales/zh-CN.yml +0 -64
  339. data/config/locales/zh-TW.yml +81 -168
  340. data/lib/decidim/api/election_type.rb +1 -1
  341. data/lib/decidim/api/elections_type.rb +1 -1
  342. data/lib/decidim/elections/admin_engine.rb +4 -19
  343. data/lib/decidim/elections/component.rb +4 -452
  344. data/lib/decidim/elections/engine.rb +23 -1
  345. data/lib/decidim/elections/menu.rb +39 -0
  346. data/lib/decidim/elections/seeds.rb +435 -0
  347. data/lib/decidim/elections/test/factories.rb +22 -21
  348. data/lib/decidim/elections/trustee_zone_engine.rb +3 -7
  349. data/lib/decidim/elections/version.rb +1 -1
  350. data/lib/decidim/elections.rb +6 -0
  351. data/lib/decidim/votings/admin_engine.rb +16 -122
  352. data/lib/decidim/votings/census_admin_engine.rb +4 -8
  353. data/lib/decidim/votings/census_menu.rb +18 -0
  354. data/lib/decidim/votings/content_blocks/registry_manager.rb +88 -0
  355. data/lib/decidim/votings/engine.rb +12 -88
  356. data/lib/decidim/votings/menu.rb +164 -0
  357. data/lib/decidim/votings/participatory_space.rb +6 -190
  358. data/lib/decidim/votings/polling_officer_zone_engine.rb +3 -7
  359. data/lib/decidim/votings/polling_officer_zone_menu.rb +17 -0
  360. data/lib/decidim/votings/query_extensions.rb +4 -4
  361. data/lib/decidim/votings/seeds.rb +197 -0
  362. data/lib/decidim/votings/test/factories.rb +29 -13
  363. data/lib/decidim/votings/voting_serializer.rb +3 -3
  364. data/lib/tasks/decidim_elections.rake +2 -2
  365. metadata +77 -123
  366. data/app/cells/decidim/elections/election_m/data.erb +0 -19
  367. data/app/cells/decidim/elections/election_m/footer.erb +0 -5
  368. data/app/cells/decidim/elections/election_m/tags.erb +0 -3
  369. data/app/cells/decidim/elections/election_m_cell.rb +0 -96
  370. data/app/cells/decidim/elections/election_results/blank_votes.erb +0 -7
  371. data/app/cells/decidim/votings/content_blocks/highlighted_votings/show.erb +0 -30
  372. data/app/cells/decidim/votings/content_blocks/landing_page/attachments_and_folders_cell.rb +0 -22
  373. data/app/cells/decidim/votings/content_blocks/landing_page/description/show.erb +0 -15
  374. data/app/cells/decidim/votings/content_blocks/landing_page/description_cell.rb +0 -25
  375. data/app/cells/decidim/votings/content_blocks/landing_page/elections/show.erb +0 -15
  376. data/app/cells/decidim/votings/content_blocks/landing_page/elections/single.erb +0 -11
  377. data/app/cells/decidim/votings/content_blocks/landing_page/elections_cell.rb +0 -47
  378. data/app/cells/decidim/votings/content_blocks/landing_page/header/show.erb +0 -29
  379. data/app/cells/decidim/votings/content_blocks/landing_page/header_cell.rb +0 -108
  380. data/app/cells/decidim/votings/content_blocks/landing_page/header_settings_form_cell.rb +0 -17
  381. data/app/cells/decidim/votings/content_blocks/landing_page/metrics/show.erb +0 -12
  382. data/app/cells/decidim/votings/content_blocks/landing_page/metrics_cell.rb +0 -19
  383. data/app/cells/decidim/votings/content_blocks/landing_page/polling_stations/address.erb +0 -14
  384. data/app/cells/decidim/votings/content_blocks/landing_page/polling_stations/map.erb +0 -18
  385. data/app/cells/decidim/votings/content_blocks/landing_page/polling_stations/show.erb +0 -25
  386. data/app/cells/decidim/votings/content_blocks/landing_page/polling_stations_cell.rb +0 -56
  387. data/app/cells/decidim/votings/content_blocks/landing_page/statistics_cell.rb +0 -24
  388. data/app/cells/decidim/votings/content_blocks/landing_page/timeline/show.erb +0 -7
  389. data/app/cells/decidim/votings/content_blocks/landing_page/timeline_cell.rb +0 -17
  390. data/app/cells/decidim/votings/polling_officers/polling_officers_picker/polling_officers.erb +0 -12
  391. data/app/cells/decidim/votings/voting_m/data.erb +0 -21
  392. data/app/cells/decidim/votings/voting_m/footer.erb +0 -5
  393. data/app/cells/decidim/votings/voting_m_cell.rb +0 -94
  394. data/app/commands/decidim/votings/admin/publish_voting.rb +0 -40
  395. data/app/commands/decidim/votings/admin/unpublish_voting.rb +0 -40
  396. data/app/forms/decidim/votings/admin/monitoring_committee_member_form.rb +0 -27
  397. data/app/forms/decidim/votings/admin/voting_role_form.rb +0 -29
  398. data/app/helpers/decidim/votings/admin/polling_officers_picker_helper.rb +0 -29
  399. data/app/packs/entrypoints/decidim_elections_admin_pending_action.js +0 -1
  400. data/app/packs/entrypoints/decidim_elections_admin_trustees_process.js +0 -1
  401. data/app/packs/entrypoints/decidim_elections_admin_vote_statistics.js +0 -1
  402. data/app/packs/entrypoints/decidim_elections_election_log.js +0 -1
  403. data/app/packs/entrypoints/decidim_elections_onboarding.js +0 -1
  404. data/app/packs/entrypoints/decidim_elections_trustee_key_ceremony.js +0 -1
  405. data/app/packs/entrypoints/decidim_elections_trustee_tally_started.js +0 -1
  406. data/app/packs/entrypoints/decidim_elections_trustee_trustee_zone.js +0 -1
  407. data/app/packs/entrypoints/decidim_elections_trustee_zone.js +0 -1
  408. data/app/packs/entrypoints/decidim_elections_trustee_zone.scss +0 -1
  409. data/app/packs/entrypoints/decidim_elections_voter_casting-vote.js +0 -1
  410. data/app/packs/entrypoints/decidim_elections_voter_new-vote.js +0 -1
  411. data/app/packs/entrypoints/decidim_elections_voter_setup-preview.js +0 -1
  412. data/app/packs/entrypoints/decidim_elections_voter_setup-vote.js +0 -1
  413. data/app/packs/entrypoints/decidim_elections_voter_verify-vote.js +0 -1
  414. data/app/packs/entrypoints/decidim_votings_admin_monitoring_committee_members_form.js +0 -1
  415. data/app/packs/entrypoints/decidim_votings_admin_polling_officers_form.js +0 -1
  416. data/app/packs/entrypoints/decidim_votings_admin_polling_officers_picker.js +0 -1
  417. data/app/packs/entrypoints/decidim_votings_admin_polling_stations_form.js +0 -1
  418. data/app/packs/entrypoints/decidim_votings_admin_update_census_dataset_status.js +0 -1
  419. data/app/packs/entrypoints/decidim_votings_admin_votings.js +0 -1
  420. data/app/packs/entrypoints/decidim_votings_admin_votings.scss +0 -1
  421. data/app/packs/entrypoints/decidim_votings_in-person-vote.js +0 -1
  422. data/app/packs/entrypoints/decidim_votings_voting-description-cell.js +0 -1
  423. data/app/packs/entrypoints/decidim_votings_voting_polling_officer_zone-edit-closure.js +0 -1
  424. data/app/packs/entrypoints/decidim_votings_voting_polling_officer_zone-in-person-vote.js +0 -1
  425. data/app/packs/entrypoints/decidim_votings_voting_polling_officer_zone-new-closure.js +0 -1
  426. data/app/packs/entrypoints/decidim_votings_voting_polling_officer_zone-sign-closure.js +0 -1
  427. data/app/packs/src/decidim/elections/onboarding.js +0 -5
  428. data/app/packs/src/decidim/votings/admin/monitoring_committee_members_form.js +0 -35
  429. data/app/packs/src/decidim/votings/voting-description-cell.js +0 -34
  430. data/app/packs/stylesheets/decidim/elections/focus/_accordion.scss +0 -36
  431. data/app/packs/stylesheets/decidim/elections/focus/_evote.scss +0 -344
  432. data/app/packs/stylesheets/decidim/elections/focus/_focus.scss +0 -128
  433. data/app/packs/stylesheets/decidim/elections/trustee_zone.scss +0 -24
  434. data/app/packs/stylesheets/decidim/votings/votings/_polling-stations-cell.scss +0 -6
  435. data/app/packs/stylesheets/decidim/votings/votings/_voting-description-cell.scss +0 -29
  436. data/app/views/decidim/elections/admin/answers/proposals_picker.html.erb +0 -1
  437. data/app/views/decidim/elections/elections/_count.html.erb +0 -1
  438. data/app/views/decidim/elections/elections/_election.html.erb +0 -1
  439. data/app/views/decidim/elections/elections/_filters.html.erb +0 -25
  440. data/app/views/decidim/elections/elections/_filters_small_view.html.erb +0 -18
  441. data/app/views/decidim/elections/votes/_focus_header.html.erb +0 -8
  442. data/app/views/decidim/elections/votes/_new_confirm_step_footer.html.erb +0 -23
  443. data/app/views/decidim/votings/admin/votings/polling_officers_picker.html.erb +0 -2
  444. data/app/views/decidim/votings/votings/_count.html.erb +0 -1
  445. data/app/views/decidim/votings/votings/_filters.html.erb +0 -25
  446. data/app/views/decidim/votings/votings/_filters_small_view.html.erb +0 -23
  447. data/app/views/decidim/votings/votings/_promoted_voting.html.erb +0 -27
  448. data/app/views/layouts/decidim/_election_votes_header.html.erb +0 -13
  449. data/app/views/layouts/decidim/election_votes.html.erb +0 -27
  450. data/app/views/layouts/decidim/voting_landing.html.erb +0 -13
  451. data/db/seeds/Exampledocument.pdf +0 -0
  452. data/db/seeds/city.jpeg +0 -0
  453. data/db/seeds/city2.jpeg +0 -0
  454. data/lib/decidim/elections/seeds/city.jpeg +0 -0
  455. data/lib/decidim/votings/test/capybara_polling_officers_picker.rb +0 -49
  456. /data/app/cells/decidim/votings/content_blocks/{landing_page/header_settings_form → hero_settings_form}/show.erb +0 -0
@@ -1,11 +1,12 @@
1
- <div class="vote-wrapper">
2
- <div class="focus__step">
3
- <% if vote&.pending? %>
4
- <%= render("show_casting") %>
5
- <% elsif vote&.accepted? || preview_mode? %>
6
- <%= render("show_casted") %>
7
- <% else %>
8
- <%= render("show_failed") %>
9
- <% end %>
10
- </div>
11
- </div>
1
+ <%= append_stylesheet_pack_tag "decidim_elections" %>
2
+ <%= append_javascript_pack_tag "decidim_elections" %>
3
+
4
+ <%= render layout: "layouts/decidim/shared/layout_center" do %>
5
+ <% if vote&.pending? %>
6
+ <%= render("show_casting") %>
7
+ <% elsif vote&.accepted? || preview_mode? %>
8
+ <%= render("show_casted") %>
9
+ <% else %>
10
+ <%= render("show_failed") %>
11
+ <% end %>
12
+ <% end %>
@@ -1,78 +1,57 @@
1
- <div class="verify-vote-wrapper"
2
- data-election-id="<%= election.id %>"
3
- data-api-endpoint-url="<%= bulletin_board_server %>"
4
- data-election-unique-id="<%= election_unique_id %>">
1
+ <%= append_stylesheet_pack_tag "decidim_elections" %>
2
+ <%= append_javascript_pack_tag "decidim_elections" %>
5
3
 
6
- <div class="focus__header">
7
- <div class="row">
8
- <div class="focus__steps">
9
- <strong>
10
- <%= t("decidim.elections.votes.verify.header.title") %>
11
- </strong>
12
- </div>
4
+ <%= render layout: "layouts/decidim/shared/layout_center" do %>
13
5
 
14
- <div class="heading5 focus__header-title">
15
- <%= translated_attribute(election.title) %>
16
- </div>
17
- </div>
6
+ <div class="text-center py-10">
7
+ <h1 class="title-decorator inline-block text-left">
8
+ <%= t("decidim.elections.votes.verify.header.title") %>: <%= translated_attribute(election.title) %>
9
+ </h1>
18
10
  </div>
19
11
 
20
- <div class="focus__content evote">
21
- <div class="row">
22
- <h1 class="heading2">
23
- <%= t("decidim.elections.votes.verify.content.heading") %>
24
- </h1>
12
+ <div id="verify-vote-wrapper"
13
+ data-election-id="<%= election.id %>"
14
+ data-api-endpoint-url="<%= bulletin_board_server %>"
15
+ data-election-unique-id="<%= election_unique_id %>">
25
16
 
26
- <p>
27
- <%= t("decidim.elections.votes.verify.content.info") %>
28
- </p>
17
+ <h2 class="h3">
18
+ <%= t("decidim.elections.votes.verify.content.heading") %>
19
+ </h2>
29
20
 
30
- <div class="evote__content small-6">
31
- <div class="verify-vote-success hide callout success">
32
- <h2 class="heading4">
33
- <%= t("decidim.elections.votes.verify.success.header") %>
34
- </h2>
21
+ <p class="text-gray-2 mt-4">
22
+ <%= t("decidim.elections.votes.verify.content.info") %>
23
+ </p>
35
24
 
36
- <p>
37
- <%== t("decidim.elections.votes.verify.success.info", link: link_to(translated_attribute(election.title), election_path(election))) %>
38
- </p>
39
- </div>
40
-
41
- <div class="verify-vote-error hide callout alert">
42
- <h2 class="heading4">
43
- <%= t("decidim.elections.votes.verify.error.header") %>
44
- </h2>
25
+ <div id="verify-vote-success" hidden>
26
+ <%= cell("decidim/announcement", { title: t("decidim.elections.votes.verify.success.header"), body: t("decidim.elections.votes.verify.success.info", link: link_to(translated_attribute(election.title), election_path(election))).html_safe }, callout_class: "success") %>
27
+ </div>
45
28
 
46
- <p>
47
- <%== t("decidim.elections.votes.verify.error.info", link: link_to(translated_attribute(election.title), election_path(election))) %>
48
- </p>
49
- </div>
29
+ <div id="verify-vote-error" hidden>
30
+ <%= cell("decidim/announcement", { title: t("decidim.elections.votes.verify.error.header"), body: t("decidim.elections.votes.verify.error.info", link: link_to(translated_attribute(election.title), election_path(election))).html_safe }, callout_class: "alert") %>
31
+ </div>
50
32
 
51
- <form class="form">
52
- <label>
53
- <%= t("decidim.elections.votes.verify.form.vote_identifier") %>
33
+ <form class="form">
34
+ <div class="form__wrapper">
35
+ <label>
36
+ <%= t("decidim.elections.votes.verify.form.vote_identifier") %>
54
37
 
55
- <input type="text" class="vote-identifier" name="vote-identifier" value="<%= params[:vote_id].gsub("_","") %>">
56
- </label>
57
38
  <p class="help-text"><%= t("decidim.elections.votes.verify.form.vote_identifier_help") %></p>
58
- <div>
59
- <%= link_to(
60
- "#",
61
- class: "button focus__next confirm"
62
- ) do %>
39
+ <input type="text" class="vote-identifier" name="vote-identifier" value="<%= params[:vote_id].gsub("_","") %>">
40
+ </label>
41
+ </div>
63
42
 
64
- <%= t("decidim.elections.votes.verify.form.submit") %>
65
- <% end %>
66
- </div>
43
+ <div class="form__wrapper-block flex-col-reverse md:flex-row justify-between">
44
+ <%= link_to election_path(election), class: "button button__sm md:button__lg button__transparent-secondary" do %>
45
+ <span><%= t("decidim.elections.votes.verify.form.back") %></span>
46
+ <% end %>
67
47
 
68
- <%= link_to(t("decidim.elections.votes.verify.form.back"), election_path(election)) %>
69
- </form>
48
+ <button type="submit" class="button button__sm md:button__lg button__secondary">
49
+ <span><%= t("decidim.elections.votes.verify.form.submit") %></span>
50
+ <%= icon "arrow-right-line" %>
51
+ </button>
70
52
  </div>
71
- </div>
72
- </div>
53
+ </form>
73
54
 
74
- </div>
55
+ </div>
75
56
 
76
- <% content_for :js_content do %>
77
- <%= javascript_pack_tag "decidim_elections_voter_verify_vote" %>
78
57
  <% end %>
@@ -1,24 +1,24 @@
1
- <div class="card">
2
- <div class="card-divider">
3
- <h2 class="card-title"><%= title %></h2>
4
- </div>
5
- <div class="card-section">
6
- <div class="row column">
7
- <%= form.text_field :code, autofocus: true %>
8
- <p class="help-text"><%= t(".code_help") %></p>
9
- </div>
10
-
11
- <%= form.label :question_ids, t(".questions") %>
12
- <p class="help-text"><%= t(".questions_help") %></p>
13
-
14
- <% voting_elections.each do |election| %>
1
+ <div class="form__wrapper">
2
+ <div class="card pt-4">
3
+ <div class="card-section">
15
4
  <div class="row column">
16
- <%= "#{t(".election")}: #{translated_attribute(election.title)}" %>
5
+ <%= form.text_field :code, autofocus: true, help_text: t(".code_help") %>
6
+ </div>
17
7
 
18
- <% election.questions.each do |question| %>
19
- <%= form.check_box :question_ids, { multiple: true, label: translated_attribute(question.title), label_options: { for: nil } }, question.id, nil %>
20
- <% end %>
8
+ <div class="row column">
9
+ <%= form.label :question_ids, t(".questions") %>
10
+ <p class="help-text"><%= t(".questions_help") %></p>
21
11
  </div>
22
- <% end %>
12
+
13
+ <% voting_elections.each do |election| %>
14
+ <div class="row column">
15
+ <%= "#{t(".election")}: #{translated_attribute(election.title)}" %>
16
+
17
+ <% election.questions.each do |question| %>
18
+ <%= form.check_box :question_ids, { multiple: true, label: translated_attribute(question.title), label_options: { for: nil } }, question.id, nil %>
19
+ <% end %>
20
+ </div>
21
+ <% end %>
22
+ </div>
23
23
  </div>
24
24
  </div>
@@ -1,8 +1,18 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
- <%= decidim_form_for([current_voting, @form], url: { action: "update" }, html: { class: "form edit_ballot_style" }) do |f| %>
3
- <%= render partial: "form", object: f, locals: { title: t(".title") } %>
4
-
5
- <div class="button--double form-general-submit">
6
- <%= f.submit t(".update") %>
2
+ <div class="item_show__header">
3
+ <h2 class="item_show__header-title">
4
+ <%= t(".title") %>
5
+ </h2>
6
+ </div>
7
+ <div class="item__edit item__edit-1col">
8
+ <div class="item__edit-form">
9
+ <%= decidim_form_for([current_voting, @form], url: { action: "update" }, html: { class: "form-defaults form edit_ballot_style" }) do |f| %>
10
+ <%= render partial: "form", object: f %>
11
+ <div class="item__edit-sticky">
12
+ <div class="item__edit-sticky-container">
13
+ <%= f.submit t(".update"), class: "button button__sm button__secondary" %>
14
+ </div>
15
+ </div>
16
+ <% end %>
7
17
  </div>
8
- <% end %>
18
+ </div>
@@ -1,69 +1,65 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
- <div class="callout warning">
3
- <%= icon "info" %>
4
- <span class="callout-text"><%= t("explanation_callout", scope: "decidim.votings.admin.ballot_styles.index") %></span>
5
- </div>
2
+
3
+ <%= cell("decidim/announcement", t("explanation_callout", scope: "decidim.votings.admin.ballot_styles.index"), callout_class: "warning" ) %>
6
4
  <div class="card" id="ballot_styles">
7
- <div class="card-divider">
8
- <h2 class="card-title">
5
+ <div class="item_show__header">
6
+ <h2 class="item_show__header-title">
9
7
  <%= t(".title") %>
10
- <%= link_to t("actions.new", scope: "decidim.votings.admin.ballot_styles.index", name: t("models.ballot_style.name", scope: "decidim.votings.admin")), new_voting_ballot_style_path(current_voting), class: "button tiny button--title" if allowed_to? :create, :ballot_style, voting: current_voting %>
8
+ <%= link_to t("actions.new", scope: "decidim.votings.admin.ballot_styles.index"), new_voting_ballot_style_path(current_voting), class: "button button__sm button__secondary" if allowed_to? :create, :ballot_style, voting: current_voting %>
11
9
  </h2>
12
10
  </div>
13
- <div class="card-section">
14
- <div class="table-scroll">
15
- <table class="table-list">
16
- <thead>
17
- <tr>
18
- <th rowspan="2"><%= t("code", scope: "decidim.votings.admin.models.ballot_style.fields") %></th>
19
- <% voting_elections.each do |election| %>
20
- <th colspan="<%= election.questions.count %>"><%= translated_attribute(election.title) %></th>
11
+ <div class="table-scroll">
12
+ <table class="table-list">
13
+ <thead>
14
+ <tr>
15
+ <th rowspan="2"><%= t("code", scope: "decidim.votings.admin.models.ballot_style.fields") %></th>
16
+ <% voting_elections.each do |election| %>
17
+ <th colspan="<%= election.questions.count %>"><%= translated_attribute(election.title) %></th>
18
+ <% end %>
19
+ <th rowspan="2"><%= t("associated_census_data", scope: "decidim.votings.admin.ballot_styles.index") %></th>
20
+ <th rowspan="2" class="actions"><%= t("actions.title", scope: "decidim.votings.admin.ballot_styles.index") %></th>
21
+ </tr>
22
+ <tr>
23
+ <% voting_elections.each do |election| %>
24
+ <% election.questions.each do |question| %>
25
+ <th data-tooltip class="ballot-style__question-header" title="<%= translated_attribute(question.title) %>"><%= translated_attribute(question.title) %></th>
21
26
  <% end %>
22
- <th rowspan="2"><%= t("associated_census_data", scope: "decidim.votings.admin.ballot_styles.index") %></th>
23
- <th rowspan="2" class="actions"><%= t("actions.title", scope: "decidim.votings.admin.ballot_styles.index") %></th>
24
- </tr>
25
- <tr>
27
+ <% end %>
28
+ </tr>
29
+ </thead>
30
+ <tbody>
31
+ <% ballot_styles.each do |ballot_style| %>
32
+ <tr data-id="<%= ballot_style.id %>">
33
+ <td>
34
+ <%= ballot_style.code %>
35
+ </td>
26
36
  <% voting_elections.each do |election| %>
27
37
  <% election.questions.each do |question| %>
28
- <th data-tooltip class="ballot-style__question-header" title="<%= translated_attribute(question.title) %>"><%= translated_attribute(question.title) %></th>
38
+ <% icon_name, icon_style = ballot_style.questions.include?(question) ? ["check-line", "ballot-style__question--checked"] : ["close-circle-line", "ballot-style__question--unchecked"] %>
39
+ <td> <%= icon icon_name, class: icon_style %> </td>
29
40
  <% end %>
30
41
  <% end %>
31
- </tr>
32
- </thead>
33
- <tbody>
34
- <% ballot_styles.each do |ballot_style| %>
35
- <tr data-id="<%= ballot_style.id %>">
36
- <td>
37
- <%= ballot_style.code %>
38
- </td>
39
- <% voting_elections.each do |election| %>
40
- <% election.questions.each do |question| %>
41
- <% icon_name, icon_style = ballot_style.questions.include?(question) ? ["check", "ballot-style__question--checked"] : ["x", "ballot-style__question--unchecked"] %>
42
- <td> <%= icon icon_name, class: icon_style %> </td>
43
- <% end %>
42
+ <td>
43
+ <%= ballot_style.census_data.count %>
44
+ </td>
45
+ <td class="table-list__actions">
46
+ <% if allowed_to? :update, :ballot_style, ballot_style: ballot_style, voting: current_voting %>
47
+ <%= icon_link_to "pencil-line", edit_voting_ballot_style_path(current_voting, ballot_style), t("actions.edit", scope: "decidim.votings.admin.ballot_styles.index"), class: "action-icon--edit" %>
48
+ <% else %>
49
+ <%= icon "pencil-line", class: "action-icon action-icon--disabled", role: "img", aria_label: t("actions.edit", scope: "decidim.votings.admin.ballot_styles.index") %>
44
50
  <% end %>
45
- <td>
46
- <%= ballot_style.census_data.count %>
47
- </td>
48
- <td class="table-list__actions">
49
- <% if allowed_to? :update, :ballot_style, ballot_style: ballot_style, voting: current_voting %>
50
- <%= icon_link_to "pencil", edit_voting_ballot_style_path(current_voting, ballot_style), t("actions.edit", scope: "decidim.votings.admin.ballot_styles.index"), class: "action-icon--edit" %>
51
- <% else %>
52
- <%= icon "pencil", class: "action-icon action-icon--disabled", role: "img", aria_label: t("actions.edit", scope: "decidim.votings.admin.ballot_styles.index") %>
53
- <% end %>
54
51
 
55
- <% if allowed_to? :delete, :ballot_style, ballot_style: ballot_style, voting: current_voting %>
56
- <%= icon_link_to "trash", voting_ballot_style_path(current_voting, ballot_style), t("actions.destroy", scope: "decidim.votings.admin.ballot_styles.index"), method: :delete, class: "action-icon--remove", data: { confirm: t("actions.confirm_destroy", scope: "decidim.votings.admin.ballot_styles.index") } %>
57
- <% else %>
58
- <%= icon "trash", class: "action-icon action-icon--disabled", role: "img", aria_label: t("actions.destroy", scope: "decidim.votings.admin.ballot_styles.index") %>
59
- <% end %>
60
- </td>
61
- </tr>
62
- <% end %>
63
- </tbody>
64
- </table>
65
- </div>
52
+ <% if allowed_to? :delete, :ballot_style, ballot_style: ballot_style, voting: current_voting %>
53
+ <%= icon_link_to "delete-bin-line", voting_ballot_style_path(current_voting, ballot_style), t("actions.destroy", scope: "decidim.votings.admin.ballot_styles.index"), method: :delete, class: "action-icon--remove", data: { confirm: t("actions.confirm_destroy", scope: "decidim.votings.admin.ballot_styles.index") } %>
54
+ <% else %>
55
+ <%= icon "delete-bin-line", class: "action-icon action-icon--disabled", role: "img", aria_label: t("actions.destroy", scope: "decidim.votings.admin.ballot_styles.index") %>
56
+ <% end %>
57
+ </td>
58
+ </tr>
59
+ <% end %>
60
+ </tbody>
61
+ </table>
66
62
  </div>
67
63
  </div>
68
64
 
69
- <%= stylesheet_pack_tag "decidim_votings_admin_votings", media: "all" %>
65
+ <%= append_stylesheet_pack_tag "decidim_votings_admin" %>
@@ -1,8 +1,18 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
- <%= decidim_form_for([current_participatory_space, @form], html: { class: "form new_ballot_style" }) do |f| %>
3
- <%= render partial: "form", object: f, locals: { title: t(".title") } %>
4
-
5
- <div class="button--double form-general-submit">
6
- <%= f.submit t(".create") %>
2
+ <div class="item_show__header">
3
+ <h2 class="item_show__header-title">
4
+ <%= t(".title") %>
5
+ </h2>
6
+ </div>
7
+ <div class="item__edit item__edit-1col">
8
+ <div class="item__edit-form">
9
+ <%= decidim_form_for([current_participatory_space, @form], html: { class: "form-defaults form new_ballot_style" }) do |f| %>
10
+ <%= render partial: "form", object: f %>
11
+ <div class="item__edit-sticky">
12
+ <div class="item__edit-sticky-container">
13
+ <%= f.submit t(".create"), class: "button button__sm button__secondary" %>
14
+ </div>
15
+ </div>
16
+ <% end %>
7
17
  </div>
8
- <% end %>
18
+ </div>
@@ -1,53 +1,50 @@
1
1
 
2
2
  <div class="card" id="monitoring_committee_polling_station_closures">
3
- <div class="card-divider">
4
- <h2 class="card-title">
3
+ <div class="item_show__header">
4
+ <h2 class="item_show__header-title">
5
5
  <%= t(".title", election_title: translated_attribute(election.title)).html_safe %>
6
6
  </h2>
7
7
  </div>
8
-
9
- <div class="card-section">
10
- <div class="table-scroll">
11
- <table class="table-list">
12
- <thead>
13
- <tr>
14
- <th><%= t(".election_totals") %></th>
15
- <th><%= t(".polling_stations") %></th>
16
- <th><%= t(".bulletin_board") %></th>
17
- <th><%= t(".totals") %></th>
18
- <th></th>
19
- </tr>
20
- </thead>
21
- <% groups.each do |group| %>
22
- <tbody class="question_<%= group[:question]&.id %>">
23
- <% if group[:question].present? %>
24
- <tr>
25
- <th colspan="4" class="text-left"><%= translated_attribute(group[:question].title) %></th>
26
- <th></th>
27
- </tr>
28
- <% end %>
29
- <% group[:results].each do |result| %>
30
- <tr class="result <%= result[:answer].present? ? "answer answer_#{result[:answer].id}" : "not_answer #{result[:result_type]}" %>">
31
- <td>
32
- <% if result[:answer].present? %>
33
- <%= translated_attribute(result[:answer].title) %>
34
- <% else %>
35
- <%= t(".result_types.#{result[:result_type]}") %>
36
- <% end %>
37
- </td>
38
- <td><%= result[:polling_station] %></td>
39
- <td><%= result[:bulletin_board] %></td>
40
- <td><%= result[:value] %></td>
41
- <td>
42
- <% if result[:answer]&.selected %>
43
- <span class="text-success"><%= t(".selected") %></td>
44
- <% end %>
45
- </td>
46
- </tr>
47
- <% end %>
48
- </tbody>
49
- <% end %>
50
- </table>
51
- </div>
8
+ <div class="table-scroll">
9
+ <table class="table-list">
10
+ <thead>
11
+ <tr>
12
+ <th><%= t(".election_totals") %></th>
13
+ <th><%= t(".polling_stations") %></th>
14
+ <th><%= t(".bulletin_board") %></th>
15
+ <th><%= t(".totals") %></th>
16
+ <th></th>
17
+ </tr>
18
+ </thead>
19
+ <% groups.each do |group| %>
20
+ <tbody class="question_<%= group[:question]&.id %>">
21
+ <% if group[:question].present? %>
22
+ <tr>
23
+ <th colspan="4" class="text-left"><%= translated_attribute(group[:question].title) %></th>
24
+ <th></th>
25
+ </tr>
26
+ <% end %>
27
+ <% group[:results].each do |result| %>
28
+ <tr class="result <%= result[:answer].present? ? "answer answer_#{result[:answer].id}" : "not_answer #{result[:result_type]}" %>">
29
+ <td>
30
+ <% if result[:answer].present? %>
31
+ <%= translated_attribute(result[:answer].title) %>
32
+ <% else %>
33
+ <%= t(".result_types.#{result[:result_type]}") %>
34
+ <% end %>
35
+ </td>
36
+ <td><%= result[:polling_station] %></td>
37
+ <td><%= result[:bulletin_board] %></td>
38
+ <td><%= result[:value] %></td>
39
+ <td>
40
+ <% if result[:answer]&.selected %>
41
+ <span class="text-success"><%= t(".selected") %></span>
42
+ <% end %>
43
+ </td>
44
+ </tr>
45
+ <% end %>
46
+ </tbody>
47
+ <% end %>
48
+ </table>
52
49
  </div>
53
50
  </div>
@@ -1,32 +1,30 @@
1
+ <% add_decidim_page_title(t(".title")) %>
1
2
  <div class="card" id="monitoring_committee_election_results">
2
- <div class="card-divider">
3
- <h2 class="card-title">
3
+ <div class="item_show__header">
4
+ <h2 class="item_show__header-title">
4
5
  <%= t(".title") %>
5
6
  </h2>
6
7
  </div>
7
-
8
- <div class="card-section">
9
- <div class="table-scroll">
10
- <table class="table-list">
11
- <thead>
12
- <tr>
13
- <th><%= t("title", scope: "decidim.elections.admin.elections.index") %></th>
14
- <th class="actions"><%= t("actions.title", scope: "decidim.votings.admin.monitoring_committee_election_results") %></th>
8
+ <div class="table-scroll">
9
+ <table class="table-list">
10
+ <thead>
11
+ <tr>
12
+ <th><%= t("title", scope: "decidim.elections.admin.elections.index") %></th>
13
+ <th class="actions"><%= t("actions.title", scope: "decidim.votings.admin.monitoring_committee_election_results") %></th>
14
+ </tr>
15
+ </thead>
16
+ <tbody>
17
+ <% elections.finished.each do |election| %>
18
+ <tr data-id="<%= election.id %>">
19
+ <td>
20
+ <%= link_to translated_attribute(election.title), voting_monitoring_committee_election_result_path(current_voting, election) %>
21
+ </td>
22
+ <td class="table-list__actions">
23
+ <%= icon_link_to "eye-line", voting_monitoring_committee_election_result_path(current_voting, election), t("actions.view", scope: "decidim.votings.admin.monitoring_committee_election_results"), class: "action-icon--view", target: "_blank", data: { "external-link": false } %>
24
+ </td>
15
25
  </tr>
16
- </thead>
17
- <tbody>
18
- <% elections.finished.each do |election| %>
19
- <tr data-id="<%= election.id %>">
20
- <td>
21
- <%= link_to translated_attribute(election.title), voting_monitoring_committee_election_result_path(current_voting, election) %>
22
- </td>
23
- <td class="table-list__actions">
24
- <%= icon_link_to "eye", voting_monitoring_committee_election_result_path(current_voting, election), t("actions.view", scope: "decidim.votings.admin.monitoring_committee_election_results"), class: "action-icon--view" %>
25
- </td>
26
- </tr>
27
- <% end %>
28
- </tbody>
29
- </table>
30
- </div>
26
+ <% end %>
27
+ </tbody>
28
+ </table>
31
29
  </div>
32
30
  </div>
@@ -1,6 +1,6 @@
1
1
  <% unless elections.one? %>
2
2
  <%= link_to voting_monitoring_committee_election_results_path(current_voting) do %>
3
- <%= icon "caret-left", class: "icon--small", role: "img" %> <%= t(".change_election") %>
3
+ <%= icon "arrow-left-s-fill", class: "icon--small", role: "img" %> <%= t(".change_election") %>
4
4
  <% end %>
5
5
  <% end %>
6
6
 
@@ -12,13 +12,13 @@
12
12
  data-api-endpoint-url="<%= bulletin_board_server %>"
13
13
  data-message-id="<%= publish_results_form.pending_action.message_id %>"></div>
14
14
 
15
- <%= javascript_pack_tag "decidim_elections_admin_pending_action" %>
15
+ <%= append_javascript_pack_tag "decidim_elections_admin" %>
16
16
  <span class='loading-spinner'></span> <%= t(".publishing") %></div>
17
17
  <% else %>
18
- <div class="button--double form-general-submit">
19
- <%= f.submit t(".publish_results") %>
18
+ <div class="form__wrapper-block flex-col-reverse md:flex-row justify-between">
19
+ <%= f.submit t(".publish_results"), class: "button button__sm button__secondary" %>
20
20
  </div>
21
21
  <% end %>
22
22
  <% end %>
23
23
 
24
- <%= stylesheet_pack_tag "decidim_votings_admin_votings", media: "all" %>
24
+ <%= append_stylesheet_pack_tag "decidim_votings_admin" %>
@@ -1,27 +1,26 @@
1
- <div class="card">
2
- <div class="card-divider">
3
- <h2 class="card-title"><%= title %></h2>
4
- </div>
5
- <div class="card-section user-fields">
6
- <div class="row column">
7
- <%= form.select :existing_user, [[t(".non_user"), false], [t(".existing_user"), true]], label: t(".user_type") %>
8
- </div>
1
+ <div class="form__wrapper">
2
+ <div class="card">
3
+ <div class="card-section user-fields">
4
+ <div class="row column">
5
+ <%= form.select :existing_user, [[t(".non_user"), false], [t(".existing_user"), true]], label: t(".user_type") %>
6
+ </div>
9
7
 
10
- <div class="row column user-fields--user-picker">
11
- <% prompt_options = { url: decidim_admin.users_organization_url, placeholder: t(".select_user") } %>
12
- <%= form.autocomplete_select(:user_id, form.object.user.presence, { multiple: false }, prompt_options) do |user|
13
- { value: user.id, label: "#{user.name} (@#{user.nickname})" }
14
- end %>
15
- </div>
8
+ <div class="row column user-fields--user-picker">
9
+ <% prompt_options = { url: decidim_admin.users_organization_url, placeholder: t(".select_user") } %>
10
+ <%= form.autocomplete_select(:user_id, form.object.user.presence, { multiple: false }, prompt_options) do |user|
11
+ { value: user.id, label: "#{user.name} (@#{user.nickname})" }
12
+ end %>
13
+ </div>
16
14
 
17
- <div class="row column user-fields--email">
18
- <%= form.email_field :email %>
19
- </div>
15
+ <div class="row column user-fields--email">
16
+ <%= form.email_field :email %>
17
+ </div>
20
18
 
21
- <div class="row column user-fields--name">
22
- <%= form.text_field :name %>
19
+ <div class="row column user-fields--name">
20
+ <%= form.text_field :name %>
21
+ </div>
23
22
  </div>
24
23
  </div>
25
24
  </div>
26
25
 
27
- <%= javascript_pack_tag "decidim_votings_admin_monitoring_committee_members_form" %>
26
+ <%= append_javascript_pack_tag "decidim_votings_admin" %>