decidim-participatory_processes 0.30.3 → 0.31.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/participatory_process_groups/content_blocks/main_data/content.erb +1 -1
  3. data/app/cells/decidim/participatory_process_groups/content_blocks/main_data_cell.rb +1 -15
  4. data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats/show.erb +74 -0
  5. data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_cell.rb +29 -0
  6. data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/citizen_influence.erb +32 -0
  7. data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/inclusiveness.erb +69 -0
  8. data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/informativeness.erb +29 -0
  9. data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form/show.erb +10 -0
  10. data/app/cells/decidim/participatory_processes/content_blocks/democratic_quality_stats_settings_form_cell.rb +81 -0
  11. data/app/cells/decidim/participatory_processes/content_blocks/extra_data_cell.rb +1 -1
  12. data/app/cells/decidim/participatory_processes/content_blocks/highlighted_processes_settings_form/show.erb +3 -1
  13. data/app/cells/decidim/participatory_processes/content_blocks/main_data_cell.rb +10 -2
  14. data/app/cells/decidim/participatory_processes/indicator/show.erb +11 -0
  15. data/app/cells/decidim/participatory_processes/indicator_cell.rb +25 -0
  16. data/app/cells/decidim/participatory_processes/process_dropdown_metadata/metadata.erb +0 -7
  17. data/app/cells/decidim/participatory_processes/process_filters_cell.rb +2 -0
  18. data/app/cells/decidim/participatory_processes/process_step/show.erb +1 -1
  19. data/app/commands/decidim/participatory_processes/admin/create_participatory_process.rb +1 -1
  20. data/app/commands/decidim/participatory_processes/admin/create_participatory_process_group.rb +1 -1
  21. data/app/commands/decidim/participatory_processes/admin/{copy_participatory_process.rb → duplicate_participatory_process.rb} +25 -26
  22. data/app/commands/decidim/participatory_processes/admin/import_participatory_process.rb +1 -1
  23. data/app/commands/decidim/participatory_processes/admin/update_participatory_process.rb +16 -4
  24. data/app/commands/decidim/participatory_processes/admin/update_participatory_process_group.rb +1 -1
  25. data/app/controllers/decidim/participatory_processes/admin/{participatory_process_copies_controller.rb → participatory_process_duplicates_controller.rb} +7 -7
  26. data/app/controllers/decidim/participatory_processes/admin/participatory_process_group_landing_page_controller.rb +4 -0
  27. data/app/controllers/decidim/participatory_processes/admin/participatory_process_groups_controller.rb +3 -3
  28. data/app/controllers/decidim/participatory_processes/admin/participatory_process_imports_controller.rb +1 -1
  29. data/app/controllers/decidim/participatory_processes/admin/participatory_process_landing_page_controller.rb +4 -0
  30. data/app/controllers/decidim/participatory_processes/admin/participatory_process_steps_controller.rb +2 -2
  31. data/app/controllers/decidim/participatory_processes/admin/participatory_processes_controller.rb +3 -3
  32. data/app/controllers/decidim/participatory_processes/participatory_processes_controller.rb +0 -9
  33. data/app/forms/decidim/participatory_processes/admin/{participatory_process_copy_form.rb → participatory_process_duplicate_form.rb} +5 -5
  34. data/app/forms/decidim/participatory_processes/admin/participatory_process_form.rb +2 -1
  35. data/app/forms/decidim/participatory_processes/admin/participatory_process_group_form.rb +0 -1
  36. data/app/helpers/decidim/participatory_processes/application_helper.rb +14 -0
  37. data/app/models/decidim/participatory_process.rb +4 -4
  38. data/app/models/decidim/participatory_process_group.rb +9 -0
  39. data/app/permissions/decidim/participatory_processes/permissions.rb +4 -4
  40. data/app/presenters/decidim/participatory_processes/admin_log/participatory_process_group_presenter.rb +0 -1
  41. data/app/presenters/decidim/participatory_processes/admin_log/participatory_process_presenter.rb +0 -1
  42. data/app/presenters/decidim/participatory_processes/participatory_process_democratic_quality_stats_presenter.rb +312 -0
  43. data/app/presenters/decidim/participatory_processes/participatory_process_group_stats_presenter.rb +1 -11
  44. data/app/presenters/decidim/participatory_processes/participatory_process_presenter.rb +35 -1
  45. data/app/presenters/decidim/participatory_processes/participatory_process_stats_presenter.rb +1 -3
  46. data/app/queries/decidim/participatory_processes/participatory_processes_stats_followers_count.rb +31 -0
  47. data/app/queries/decidim/participatory_processes/participatory_processes_stats_participants_count.rb +27 -0
  48. data/app/serializers/decidim/participatory_processes/participatory_process_importer.rb +0 -1
  49. data/app/views/decidim/participatory_processes/admin/{participatory_process_copies → participatory_process_duplicates}/_form.html.erb +5 -5
  50. data/app/views/decidim/participatory_processes/admin/participatory_process_duplicates/new.html.erb +19 -0
  51. data/app/views/decidim/participatory_processes/admin/participatory_process_groups/_form.html.erb +3 -7
  52. data/app/views/decidim/participatory_processes/admin/participatory_process_groups/index.html.erb +31 -15
  53. data/app/views/decidim/participatory_processes/admin/participatory_process_steps/_form.html.erb +1 -1
  54. data/app/views/decidim/participatory_processes/admin/participatory_process_steps/index.html.erb +39 -21
  55. data/app/views/decidim/participatory_processes/admin/participatory_process_user_roles/index.html.erb +42 -24
  56. data/app/views/decidim/participatory_processes/admin/participatory_processes/_form.html.erb +10 -14
  57. data/app/views/decidim/participatory_processes/admin/participatory_processes/_process_row.html.erb +125 -53
  58. data/app/views/decidim/participatory_processes/admin/participatory_processes/edit.html.erb +0 -8
  59. data/app/views/decidim/participatory_processes/admin/participatory_processes/index.html.erb +2 -2
  60. data/app/views/decidim/participatory_processes/admin/participatory_processes/manage_trash.html.erb +2 -1
  61. data/app/views/layouts/decidim/admin/_manage_processes.html.erb +1 -1
  62. data/app/views/layouts/decidim/admin/participatory_process_group.html.erb +1 -1
  63. data/config/assets.rb +2 -2
  64. data/config/locales/ar.yml +0 -13
  65. data/config/locales/bg.yml +0 -24
  66. data/config/locales/bs-BA.yml +0 -4
  67. data/config/locales/ca-IT.yml +319 -26
  68. data/config/locales/ca.yml +319 -26
  69. data/config/locales/cs.yml +93 -27
  70. data/config/locales/de.yml +123 -26
  71. data/config/locales/el.yml +0 -21
  72. data/config/locales/en.yml +303 -25
  73. data/config/locales/es-MX.yml +319 -26
  74. data/config/locales/es-PY.yml +319 -26
  75. data/config/locales/es.yml +319 -26
  76. data/config/locales/eu.yml +309 -31
  77. data/config/locales/fi-plain.yml +303 -25
  78. data/config/locales/fi.yml +306 -28
  79. data/config/locales/fr-CA.yml +86 -25
  80. data/config/locales/fr.yml +86 -25
  81. data/config/locales/ga-IE.yml +0 -7
  82. data/config/locales/gl.yml +0 -19
  83. data/config/locales/hu.yml +0 -21
  84. data/config/locales/id-ID.yml +0 -13
  85. data/config/locales/is-IS.yml +0 -11
  86. data/config/locales/it.yml +0 -20
  87. data/config/locales/ja.yml +123 -26
  88. data/config/locales/lb.yml +0 -20
  89. data/config/locales/lt.yml +0 -21
  90. data/config/locales/lv.yml +0 -14
  91. data/config/locales/nl.yml +0 -20
  92. data/config/locales/no.yml +0 -21
  93. data/config/locales/pl.yml +16 -24
  94. data/config/locales/pt-BR.yml +0 -23
  95. data/config/locales/pt.yml +0 -20
  96. data/config/locales/ro-RO.yml +2 -21
  97. data/config/locales/ru.yml +0 -11
  98. data/config/locales/sk.yml +0 -14
  99. data/config/locales/sr-CS.yml +0 -4
  100. data/config/locales/sv.yml +86 -25
  101. data/config/locales/tr-TR.yml +0 -20
  102. data/config/locales/uk.yml +0 -11
  103. data/config/locales/zh-CN.yml +0 -17
  104. data/config/locales/zh-TW.yml +0 -21
  105. data/db/migrate/20250403110052_add_democratic_quality_static_page.rb +34 -0
  106. data/db/migrate/20250605114136_remove_hashtag_from_participatory_processes.rb +7 -0
  107. data/db/migrate/20250605114415_remove_hashtag_from_participatory_processes_groups.rb +7 -0
  108. data/decidim-participatory_processes.gemspec +3 -0
  109. data/lib/decidim/api/participatory_process_group_type.rb +9 -0
  110. data/lib/decidim/api/participatory_process_input_filter.rb +0 -1
  111. data/lib/decidim/api/participatory_process_step_type.rb +2 -0
  112. data/lib/decidim/api/participatory_process_type.rb +17 -11
  113. data/lib/decidim/participatory_processes/admin_engine.rb +1 -1
  114. data/lib/decidim/participatory_processes/content_blocks/registry_manager.rb +25 -5
  115. data/lib/decidim/participatory_processes/engine.rb +22 -25
  116. data/lib/decidim/participatory_processes/participatory_space.rb +1 -4
  117. data/lib/decidim/participatory_processes/seeds.rb +3 -5
  118. data/lib/decidim/participatory_processes/test/factories.rb +2 -3
  119. data/lib/decidim/participatory_processes/version.rb +1 -1
  120. metadata +72 -22
  121. data/app/cells/decidim/participatory_processes/content_blocks/metrics_cell.rb +0 -25
  122. data/app/presenters/decidim/participatory_processes/participatory_process_metric_charts_presenter.rb +0 -21
  123. data/app/queries/decidim/participatory_processes/metrics/participatory_process_followers_metric_measure.rb +0 -31
  124. data/app/queries/decidim/participatory_processes/metrics/participatory_processes_metric_manage.rb +0 -27
  125. data/app/queries/decidim/participatory_processes/stats_followers_count.rb +0 -60
  126. data/app/queries/decidim/participatory_processes/stats_participants_count.rb +0 -136
  127. data/app/views/decidim/participatory_processes/admin/participatory_process_copies/new.html.erb +0 -19
  128. data/app/views/decidim/participatory_processes/participatory_processes/all_metrics.html.erb +0 -25
@@ -5,17 +5,15 @@ en:
5
5
  participatory_process:
6
6
  announcement: Announcement
7
7
  area_id: Area
8
- copy_categories: Copy categories
9
- copy_components: Copy components
10
- copy_landing_page_blocks: Duplicate landing page blocks
11
- copy_steps: Copy steps
12
8
  decidim_area_id: Area
13
9
  description: Description
14
10
  developer_group: Promoter group
15
11
  document: Document
16
12
  domain: Domain
13
+ duplicate_categories: Duplicate categories
14
+ duplicate_components: Duplicate components
15
+ duplicate_steps: Duplicate steps
17
16
  end_date: End date
18
- hashtag: Hashtag
19
17
  hero_image: Home image
20
18
  import_attachments: Import attachments
21
19
  import_categories: Import categories
@@ -41,7 +39,6 @@ en:
41
39
  description: Description
42
40
  developer_group: Promoter group
43
41
  group_url: Website
44
- hashtag: Hashtag
45
42
  hero_image: Image
46
43
  local_area: Organization area
47
44
  meta_scope: Scope metadata
@@ -86,15 +83,12 @@ en:
86
83
  admin:
87
84
  actions:
88
85
  activate: Activate
89
- configure: Configure
90
86
  confirm_delete_process: Are you sure you want to delete this process? If you change your mind, you can restore it later.
91
87
  confirm_destroy: Confirm delete
92
88
  destroy: Delete
93
89
  duplicate: Duplicate
94
90
  edit: Edit
95
91
  import_process: Import
96
- menu_hidden: Hide
97
- moderate: Moderate
98
92
  new_process: New process
99
93
  new_process_group: New process group
100
94
  new_process_step: New phase
@@ -112,7 +106,7 @@ en:
112
106
  participatory_process_groups: Process groups
113
107
  participatory_process_groups_submenu:
114
108
  info: Info
115
- landing_page: Landing page
109
+ landing_page: Landing page layout
116
110
  participatory_processes: Processes
117
111
  participatory_processes_submenu:
118
112
  attachment_collections: Folders
@@ -120,7 +114,7 @@ en:
120
114
  attachments: Attachments
121
115
  components: Components
122
116
  info: About this process
123
- landing_page: Landing page
117
+ landing_page: Landing page layout
124
118
  moderations: Moderations
125
119
  private_users: Members
126
120
  process_admins: Process admins
@@ -136,16 +130,19 @@ en:
136
130
  name: Participatory process
137
131
  participatory_process_group:
138
132
  fields:
133
+ actions: Actions
139
134
  title: Title
140
135
  name: Process group
141
136
  participatory_process_step:
142
137
  fields:
138
+ actions: Actions
143
139
  end_date: End date
144
140
  start_date: Start date
145
141
  title: Title
146
142
  name: Participatory process phase
147
143
  participatory_process_user_role:
148
144
  fields:
145
+ actions: Actions
149
146
  email: Email
150
147
  name: Name
151
148
  role: Role
@@ -153,16 +150,16 @@ en:
153
150
  roles:
154
151
  admin: Administrator
155
152
  collaborator: Collaborator
153
+ evaluator: Evaluator
156
154
  moderator: Moderator
157
- valuator: Valuator
158
155
  user:
159
156
  fields:
160
157
  invitation_accepted_at: Invitation accepted at
161
158
  invitation_sent_at: Invitation sent at
162
159
  published: Published
163
- participatory_process_copies:
160
+ participatory_process_duplicates:
164
161
  new:
165
- copy: Copy
162
+ duplicate: Duplicate
166
163
  select: Select which data you would like to duplicate
167
164
  title: Duplicate participatory process
168
165
  participatory_process_groups:
@@ -263,7 +260,7 @@ en:
263
260
  update:
264
261
  error: There was a problem updating this participatory process.
265
262
  success: Participatory process successfully updated.
266
- participatory_processes_copies:
263
+ participatory_processes_duplicates:
267
264
  create:
268
265
  error: There was a problem duplicating this participatory process.
269
266
  success: Participatory process successfully duplicated.
@@ -345,11 +342,6 @@ en:
345
342
  not_found: 'The process type was not found on the database (ID: %{id}).'
346
343
  menu:
347
344
  processes: Processes
348
- metrics:
349
- participatory_processes:
350
- description: Number of participatory processes in this organization
351
- object: participatory processes
352
- title: Participatory processes
353
345
  open_data:
354
346
  help:
355
347
  participatory_processes:
@@ -360,7 +352,6 @@ en:
360
352
  developer_group: The developer group of the process. This is the organization that is promoting the process.
361
353
  end_date: The end date of the process
362
354
  follows_count: The number of users following this space
363
- hashtag: The process hashtag, used for Twitter/X
364
355
  id: The unique identifier of this process
365
356
  local_area: The local area of the process. This is the organization area where the process is taking place.
366
357
  meta_scope: The scope metadata of the process
@@ -420,6 +411,82 @@ en:
420
411
  participatory_processes:
421
412
  admin:
422
413
  content_blocks:
414
+ democratic_quality_stats_settings_form:
415
+ announcement:
416
+ body_html: |-
417
+ <ul>
418
+ <li>These are calculated automatically from Decidim data. They will become visible once you publish the content block.</li>
419
+ <li>These are based on your responses in the following form. They will be visible once you have answered all the questions.</li>
420
+ </ul>
421
+ title: 'This content block includes two types of metrics:'
422
+ citizen_influence:
423
+ citizen_decisional_intervention:
424
+ legend: Out of all phases in the process (from selecting issues to supervising execution), in how many does the public have the ability to make decisions or take executive action?
425
+ options:
426
+ five: 80 - 100%
427
+ four: 60 - 80%
428
+ one: 0 - 20%
429
+ three: 40 - 60%
430
+ two: 20 - 40%
431
+ citizen_influence_level:
432
+ legend: To what extent do citizens hold decisional authority in this process, ranging from simply receiving information to decisively influencing decisions and managing resources?
433
+ options:
434
+ five: Participants were involved in the decision-making and the management of resources or the implementation
435
+ four: Participants were involved decisively in the decision-making
436
+ one: Participants received information from the organisation
437
+ three: Participants were involved to share decision-making power
438
+ two: Participants were asked in a consultative manner or gave feedback to the organisation
439
+ name: Citizen influence
440
+ inclusiveness:
441
+ description: Inclusivity according to cultural origin and functional diversity.
442
+ digital_support_offered:
443
+ legend: Has digital support been offered to the participants?
444
+ options:
445
+ five: 'Yes'
446
+ two_five: Partially
447
+ zero: 'No'
448
+ functional_diversity_invited:
449
+ legend: How is the degree of diversity of the agents and participants assessed with respect to the population of reference in the process?
450
+ options:
451
+ five: Good
452
+ one: Low
453
+ two_five: Sufficient
454
+ zero: None
455
+ languages_communicated:
456
+ legend: How many languages have been used within the process?
457
+ options:
458
+ five: More than half of the languages spoken in the community
459
+ one: One language
460
+ two_five: Less than half of the languages spoken in the community
461
+ mobility_meeting_access:
462
+ legend: Were the venues of the face-to-face meetings accessible to people with reduced mobility?
463
+ options:
464
+ five: 'Yes'
465
+ two_five: Partially
466
+ zero: 'No'
467
+ name: Inclusiveness
468
+ participation_scheduling_times:
469
+ legend: The participation sessions have been scheduled at varied times (morning, midday, afternoon, evening, and weekends).
470
+ options:
471
+ five: 'Yes'
472
+ two_five: Partially
473
+ zero: 'No'
474
+ informativeness:
475
+ information_provided:
476
+ legend: Has information been provided regarding the participants capacity to influence the topic under discussion? (both in the communication of the process and invitations, as well as at the beginning of each debate session)
477
+ options:
478
+ five: Always
479
+ one: Almost never
480
+ two_five: Usually
481
+ zero: Never
482
+ name: Informativeness
483
+ published_information_clarity:
484
+ legend: Does the published information provide clarity on the decision-making mechanisms? (e.g. voting, consensus, direct negotiations)
485
+ options:
486
+ five: Full clarity
487
+ one: Low clarity
488
+ two_five: Suficient clarity
489
+ zero: No clarity
423
490
  highlighted_processes:
424
491
  active: Active
425
492
  all: All
@@ -428,7 +495,7 @@ en:
428
495
  new_import:
429
496
  accepted_types:
430
497
  json: JSON
431
- participatory_process_copies:
498
+ participatory_process_duplicates:
432
499
  form:
433
500
  slug_help_html: 'URL slugs are used to generate the URLs that point to this process. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
434
501
  participatory_process_groups:
@@ -460,6 +527,35 @@ en:
460
527
  title: General Information
461
528
  visibility: Visibility
462
529
  content_blocks:
530
+ democratic_quality_stats:
531
+ automatic_metrics:
532
+ description: These indicators are obtained automatically from the platform data.
533
+ indicators:
534
+ hybridization: Hybridization
535
+ hybridization_tooltip: This indicator measures the level of combination between online and offline spaces during the process
536
+ influence: Citizen influence
537
+ influence_tooltip: This indicator measures the level of citizen influence on the accepted proposals and the outcomes of the process.
538
+ traceability: Traceability
539
+ traceability_tooltip: This indicator measures the transparency and traceability of the participatory process. It reflects how easily participants can follow the evolution of proposals and verify institutional actions through published records.
540
+ transparency: Responsiveness
541
+ transparency_tooltip: This indicator measures the level of responsiveness of the organization to participant input. It reflects their engagement through official responses and implemented decisions.
542
+ name: Automatic metrics
543
+ global_score:
544
+ description_html: Below is a set of indicators used to assess the democratic quality of this participatory process. For more details on how they are calculated, see the <a href="%{info_url}">information page on democratic quality indicators</a>.
545
+ name: Global score
546
+ note: "*The indicative values are measured on a scale from 1 to 5, where 1 represents the lowest and 5 the highest quality indicator."
547
+ tooltip: Calculated as the average of all the dimensions
548
+ name: Quality indicator
549
+ qualitative_metrics:
550
+ description: These indicators are obtained from the answers to a self-assessment survey filled in by the platform's administrators.
551
+ indicators:
552
+ citizen_influence: Citizen influence
553
+ citizen_influence_tooltip: Measures the level of participant impact on decision-making.
554
+ inclusiveness: Inclusiveness
555
+ inclusiveness_tooltip: Assesses whether diverse interested parties are fairly represented.
556
+ informativeness: Informativeness
557
+ informativeness_tooltip: Measures the level of clarity and information provided within the process.
558
+ name: Self-assessment metrics
463
559
  extra_data:
464
560
  name: Phase & duration
465
561
  hero:
@@ -477,9 +573,6 @@ en:
477
573
  highlighted_processes:
478
574
  active_spaces: Active processes
479
575
  see_all_spaces: See all processes
480
- participatory_process_steps:
481
- index:
482
- back_to_process: Back to the process page
483
576
  participatory_processes:
484
577
  description:
485
578
  area_name: Area
@@ -528,8 +621,193 @@ en:
528
621
  belongs_to_group: This process belongs to
529
622
  private_space: This is a private process
530
623
  related_processes: Related processes
624
+ static_pages:
625
+ democratic_quality_indicators:
626
+ content: |-
627
+ <h2>Indicator system to measure quality indicator in Decidim.</h2>
628
+
629
+ <h3>Introduction</h3>
630
+ <p>Democratic quality is a core principle of Decidim. To uphold this, we have developed a system of indicators that help evaluate the quality of participatory processes on the platform. This article explains how these indicators are calculated.</p>
631
+
632
+ <h3>How Are Indicators Calculated?</h3>
633
+ <p>We have defined two methods for collecting quality indicators:</p>
634
+
635
+ <ol>
636
+ <li><strong>Automatic Metrics:</strong> These are calculated directly from Decidim platform data.</li>
637
+ <li><strong>Self-Assessment Questions:</strong> These are based on a form filled out by an administrator.</li>
638
+ </ol>
639
+
640
+ <p>Each indicator is expressed as a percentage (n/total). This percentage is then converted to a score on a 1-to-5 scale:</p>
641
+
642
+ <ul>
643
+ <li>1 = 0–20%</li>
644
+ <li>2 = 20–40%</li>
645
+ <li>3 = 40–60%</li>
646
+ <li>4 = 60–80%</li>
647
+ <li>5 = 80–100%</li>
648
+ </ul>
649
+
650
+ <br><br>
651
+ <h3>Automatic Metrics</h3>
652
+ <p>These metrics are automatically calculated from data available in Decidim. They are evaluated per participatory process and can be made public by administrators, so all participants can access it.</p>
653
+
654
+ <p>We have defined four main indicators: Citizen Influence, Hybridization, Responsiveness and Traceability:</p>
655
+
656
+ <h3>Citizen Influence</h3>
657
+
658
+ <p>This indicator measures the level of citizen influence on the accepted proposals and the outcomes of the process.</p>
659
+
660
+ <ul>
661
+ <li>
662
+ Citizen influence on proposals
663
+ <ul>
664
+ <li>Percentage of proposals accepted (n/total)</li>
665
+ <li>Percentage of approved <em>citizen</em> proposals over total of citizen proposals (total citizen influence on proposals approved)</li>
666
+ <li>Percentage of approved citizen proposals over total of approved proposals (relative citizen influence on approved proposal)</li>
667
+ </ul>
668
+ </li>
669
+ <li>
670
+ Citizen influence on outputs/results
671
+ <ul>
672
+ <li>Percentage of results linked to citizen proposals out of the total of results (total citizen influence on outputs)</li>
673
+ </ul>
674
+ </li>
675
+ </ul>
676
+
677
+ <h3>Hybridization</h3>
678
+
679
+ <p>This indicator measures the level of combination between online and offline spaces during the process.</p>
680
+
681
+ <ul>
682
+ <li>Is a meeting component active? (Yes=5, No=0)</li>
683
+ <li>Are there face to face meetings? (Yes=5, No=0)</li>
684
+ <li>Are there online meetings ? (Yes=5, No=0)</li>
685
+ <li>Are there hybrid meetings? (Yes=5, No=0)</li>
686
+ <li>Are there proposals created from meetings? (Yes=5, No=0)</li>
687
+ </ul>
688
+
689
+ <h3>Responsiveness</h3>
690
+
691
+ <p>This indicator measures the level of responsiveness of the organization to participant input. It reflects their engagement through official responses and implemented decisions.</p>
692
+
693
+ <ul>
694
+ <li>Percentage of proposals with answers (n/total) – Proposal institutional responsiveness</li>
695
+ <li>Percentage of results completed at 100% (n/total)</li>
696
+ </ul>
697
+
698
+ <h3>Traceability</h3>
699
+
700
+ <p>This indicator measures the transparency and traceability of the participatory process. It reflects how easily participants can follow the evolution of proposals and verify institutional actions through published records.</p>
701
+
702
+ <ul>
703
+ <li>Number of Proposals with history (n/total)</li>
704
+ <li>Percentage of results linked to proposals (n/total)</li>
705
+ <li>Percentage of meetings closed with minutes published (n/total)</li>
706
+ <li>Activation of the open data module (dichotomic: 0 or 5)</li>
707
+ <li>Percentage of proposals related to budgets (n/total)</li>
708
+ </ul>
709
+
710
+ <br><br>
711
+ <h3>Self-Assessment Metrics</h3>
712
+
713
+ <p>In addition to automatic metrics, we propose the use of a <strong>self-evaluation form</strong> to assess the qualitative dimensions of each participatory process. This form will be completed by platform administrators at the end of each process, and the responses will be publicly displayed in the indicators content block.</p>
714
+
715
+ <p>These questions aim to capture aspects of democratic quality that cannot be assessed through quantitative data alone. It is important to note that the responses to this survey are biased by the opinion of the platform administrators.</p>
716
+
717
+ <br><br>
718
+ <h3>Self-assessment questions</h3>
719
+
720
+ <p>The questions that make up the self-assessment form answered by the administrators, as well as the values associated with each answer, are set out below.</p>
721
+
722
+ <h4>Informativeness</h4>
723
+
724
+ <ol>
725
+ <li>Does the published information provide clarity on the decision-making mechanisms (e.g., voting, consensus, direct negotiations)?
726
+ <ul>
727
+ <li>No clarity = 0</li>
728
+ <li>Low clarity = 1</li>
729
+ <li>Sufficient clarity = 2,5</li>
730
+ <li>Full clarity = 5</li>
731
+ </ul>
732
+ </li>
733
+ <li>Has information been provided regarding the participants' capacity to influence the topic under discussion (both in the communication of the process and invitations, as well as at the beginning of each debate session)?
734
+ <ul>
735
+ <li>Never = 0</li>
736
+ <li>Almost never = 1</li>
737
+ <li>Usually = 2,5</li>
738
+ <li>Always = 5</li>
739
+ </ul>
740
+ </li>
741
+ </ol>
742
+
743
+ <h4>Citizens influence</h4>
744
+
745
+ <ol>
746
+ <li>Assessment of the degree of participation in the process
747
+ <ul>
748
+ <li>Participants received information from the organisation. = 1</li>
749
+ <li>Participants were asked in a consultative manner or gave feedback to the organisation. = 2</li>
750
+ <li>Participants were involved to share decision-making power. = 3</li>
751
+ <li>Participants were involved decisively in the decision-making. = 4</li>
752
+ <li>Participants were involved in the decision-making and the management of resources or the implementation. = 5</li>
753
+ </ul>
754
+ </li>
755
+ <li>Percentage of phases with 0-5 citizen decisional intervention.
756
+ <p>Out of all phases in the process (from selecting issues to supervising execution), in how many does the public have the ability to make decisions or take executive action?</p>
757
+ <ul>
758
+ <li>0-20% = 1</li>
759
+ <li>20-40% = 2</li>
760
+ <li>40-60% = 3</li>
761
+ <li>60-80% = 4</li>
762
+ <li>80-100% = 5</li>
763
+ </ul>
764
+ </li>
765
+ </ol>
766
+
767
+ <h4>Inclusiveness</h4>
768
+
769
+ <ol>
770
+ <li>How is the degree of diversity of the agents and participants assessed with respect to the population of reference in the process?
771
+ <ul>
772
+ <li>None = 0</li>
773
+ <li>Low = 1</li>
774
+ <li>Sufficient = 2,5</li>
775
+ <li>Good = 5</li>
776
+ </ul>
777
+ </li>
778
+ <li>In how many languages has the process been communicated?
779
+ <ul>
780
+ <li>One language = 1</li>
781
+ <li>Less than half of the languages spoken in the community = 2,5</li>
782
+ <li>More than half of the languages spoken in the community = 5</li>
783
+ </ul>
784
+ </li>
785
+ <li>Were the venues of the face-to-face meetings accessible to people with reduced mobility?
786
+ <ul>
787
+ <li>No = 0</li>
788
+ <li>Partially = 2,5</li>
789
+ <li>Yes = 5</li>
790
+ </ul>
791
+ </li>
792
+ <li>The participation sessions have been scheduled at varied times (morning, midday, afternoon, evening, and weekends).
793
+ <ul>
794
+ <li>No = 0</li>
795
+ <li>Partially = 2,5</li>
796
+ <li>Yes = 5</li>
797
+ </ul>
798
+ </li>
799
+ <li>Has digital support been offered to the participants?
800
+ <ul>
801
+ <li>No = 0</li>
802
+ <li>Partially = 2,5</li>
803
+ <li>Yes = 5</li>
804
+ </ul>
805
+ </li>
806
+ </ol>
807
+ title: Democratic quality indicators
531
808
  statistics:
532
809
  processes_count: Processes
810
+ processes_count_tooltip: The number of participatory processes that are publicly available.
533
811
  layouts:
534
812
  decidim:
535
813
  participatory_process_groups: