decidim-participatory_processes 0.30.2 → 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 (127) 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/highlighted_processes_settings_form/show.erb +3 -1
  12. data/app/cells/decidim/participatory_processes/content_blocks/main_data_cell.rb +10 -2
  13. data/app/cells/decidim/participatory_processes/indicator/show.erb +11 -0
  14. data/app/cells/decidim/participatory_processes/indicator_cell.rb +25 -0
  15. data/app/cells/decidim/participatory_processes/process_dropdown_metadata/metadata.erb +0 -7
  16. data/app/cells/decidim/participatory_processes/process_filters_cell.rb +2 -0
  17. data/app/cells/decidim/participatory_processes/process_step/show.erb +1 -1
  18. data/app/commands/decidim/participatory_processes/admin/create_participatory_process.rb +1 -1
  19. data/app/commands/decidim/participatory_processes/admin/create_participatory_process_group.rb +1 -1
  20. data/app/commands/decidim/participatory_processes/admin/{copy_participatory_process.rb → duplicate_participatory_process.rb} +25 -26
  21. data/app/commands/decidim/participatory_processes/admin/import_participatory_process.rb +1 -1
  22. data/app/commands/decidim/participatory_processes/admin/update_participatory_process.rb +16 -4
  23. data/app/commands/decidim/participatory_processes/admin/update_participatory_process_group.rb +1 -1
  24. data/app/controllers/decidim/participatory_processes/admin/{participatory_process_copies_controller.rb → participatory_process_duplicates_controller.rb} +7 -7
  25. data/app/controllers/decidim/participatory_processes/admin/participatory_process_group_landing_page_controller.rb +4 -0
  26. data/app/controllers/decidim/participatory_processes/admin/participatory_process_groups_controller.rb +3 -3
  27. data/app/controllers/decidim/participatory_processes/admin/participatory_process_imports_controller.rb +1 -1
  28. data/app/controllers/decidim/participatory_processes/admin/participatory_process_landing_page_controller.rb +4 -0
  29. data/app/controllers/decidim/participatory_processes/admin/participatory_process_steps_controller.rb +2 -2
  30. data/app/controllers/decidim/participatory_processes/admin/participatory_processes_controller.rb +3 -3
  31. data/app/controllers/decidim/participatory_processes/participatory_processes_controller.rb +0 -9
  32. data/app/forms/decidim/participatory_processes/admin/{participatory_process_copy_form.rb → participatory_process_duplicate_form.rb} +5 -5
  33. data/app/forms/decidim/participatory_processes/admin/participatory_process_form.rb +2 -1
  34. data/app/forms/decidim/participatory_processes/admin/participatory_process_group_form.rb +0 -1
  35. data/app/helpers/decidim/participatory_processes/application_helper.rb +14 -0
  36. data/app/models/decidim/participatory_process.rb +4 -4
  37. data/app/models/decidim/participatory_process_group.rb +9 -0
  38. data/app/permissions/decidim/participatory_processes/permissions.rb +4 -4
  39. data/app/presenters/decidim/participatory_processes/admin_log/participatory_process_group_presenter.rb +0 -1
  40. data/app/presenters/decidim/participatory_processes/admin_log/participatory_process_presenter.rb +0 -1
  41. data/app/presenters/decidim/participatory_processes/participatory_process_democratic_quality_stats_presenter.rb +312 -0
  42. data/app/presenters/decidim/participatory_processes/participatory_process_group_stats_presenter.rb +1 -11
  43. data/app/presenters/decidim/participatory_processes/participatory_process_presenter.rb +35 -1
  44. data/app/presenters/decidim/participatory_processes/participatory_process_stats_presenter.rb +1 -3
  45. data/app/queries/decidim/participatory_processes/participatory_processes_stats_followers_count.rb +31 -0
  46. data/app/queries/decidim/participatory_processes/participatory_processes_stats_participants_count.rb +27 -0
  47. data/app/serializers/decidim/participatory_processes/participatory_process_importer.rb +0 -1
  48. data/app/views/decidim/participatory_processes/admin/{participatory_process_copies → participatory_process_duplicates}/_form.html.erb +5 -5
  49. data/app/views/decidim/participatory_processes/admin/participatory_process_duplicates/new.html.erb +19 -0
  50. data/app/views/decidim/participatory_processes/admin/participatory_process_groups/_form.html.erb +3 -7
  51. data/app/views/decidim/participatory_processes/admin/participatory_process_groups/index.html.erb +31 -15
  52. data/app/views/decidim/participatory_processes/admin/participatory_process_steps/_form.html.erb +1 -1
  53. data/app/views/decidim/participatory_processes/admin/participatory_process_steps/index.html.erb +39 -21
  54. data/app/views/decidim/participatory_processes/admin/participatory_process_user_roles/index.html.erb +42 -24
  55. data/app/views/decidim/participatory_processes/admin/participatory_processes/_form.html.erb +10 -14
  56. data/app/views/decidim/participatory_processes/admin/participatory_processes/_process_row.html.erb +125 -53
  57. data/app/views/decidim/participatory_processes/admin/participatory_processes/edit.html.erb +0 -8
  58. data/app/views/decidim/participatory_processes/admin/participatory_processes/index.html.erb +2 -2
  59. data/app/views/decidim/participatory_processes/admin/participatory_processes/manage_trash.html.erb +2 -1
  60. data/app/views/layouts/decidim/admin/_manage_processes.html.erb +1 -1
  61. data/app/views/layouts/decidim/admin/participatory_process_group.html.erb +1 -1
  62. data/config/assets.rb +2 -2
  63. data/config/locales/ar.yml +0 -13
  64. data/config/locales/bg.yml +0 -24
  65. data/config/locales/bs-BA.yml +0 -4
  66. data/config/locales/ca-IT.yml +319 -25
  67. data/config/locales/ca.yml +319 -25
  68. data/config/locales/cs.yml +93 -26
  69. data/config/locales/de.yml +123 -25
  70. data/config/locales/el.yml +0 -21
  71. data/config/locales/en.yml +303 -24
  72. data/config/locales/es-MX.yml +319 -25
  73. data/config/locales/es-PY.yml +319 -25
  74. data/config/locales/es.yml +319 -25
  75. data/config/locales/eu.yml +304 -25
  76. data/config/locales/fi-plain.yml +303 -24
  77. data/config/locales/fi.yml +303 -24
  78. data/config/locales/fr-CA.yml +86 -24
  79. data/config/locales/fr.yml +86 -24
  80. data/config/locales/ga-IE.yml +0 -7
  81. data/config/locales/gl.yml +0 -19
  82. data/config/locales/hu.yml +0 -21
  83. data/config/locales/id-ID.yml +0 -13
  84. data/config/locales/is-IS.yml +0 -11
  85. data/config/locales/it.yml +0 -20
  86. data/config/locales/ja.yml +123 -25
  87. data/config/locales/lb.yml +0 -20
  88. data/config/locales/lt.yml +0 -21
  89. data/config/locales/lv.yml +0 -14
  90. data/config/locales/nl.yml +0 -20
  91. data/config/locales/no.yml +0 -21
  92. data/config/locales/pl.yml +16 -24
  93. data/config/locales/pt-BR.yml +0 -23
  94. data/config/locales/pt.yml +0 -20
  95. data/config/locales/ro-RO.yml +2 -21
  96. data/config/locales/ru.yml +0 -11
  97. data/config/locales/sk.yml +0 -14
  98. data/config/locales/sr-CS.yml +0 -4
  99. data/config/locales/sv.yml +86 -24
  100. data/config/locales/tr-TR.yml +0 -20
  101. data/config/locales/uk.yml +0 -11
  102. data/config/locales/zh-CN.yml +0 -17
  103. data/config/locales/zh-TW.yml +0 -21
  104. data/db/migrate/20250403110052_add_democratic_quality_static_page.rb +34 -0
  105. data/db/migrate/20250605114136_remove_hashtag_from_participatory_processes.rb +7 -0
  106. data/db/migrate/20250605114415_remove_hashtag_from_participatory_processes_groups.rb +7 -0
  107. data/decidim-participatory_processes.gemspec +3 -0
  108. data/lib/decidim/api/participatory_process_group_type.rb +9 -0
  109. data/lib/decidim/api/participatory_process_input_filter.rb +0 -1
  110. data/lib/decidim/api/participatory_process_step_type.rb +2 -0
  111. data/lib/decidim/api/participatory_process_type.rb +17 -11
  112. data/lib/decidim/participatory_processes/admin_engine.rb +1 -1
  113. data/lib/decidim/participatory_processes/content_blocks/registry_manager.rb +25 -5
  114. data/lib/decidim/participatory_processes/engine.rb +22 -25
  115. data/lib/decidim/participatory_processes/participatory_space.rb +1 -4
  116. data/lib/decidim/participatory_processes/seeds.rb +3 -5
  117. data/lib/decidim/participatory_processes/test/factories.rb +2 -3
  118. data/lib/decidim/participatory_processes/version.rb +1 -1
  119. metadata +72 -22
  120. data/app/cells/decidim/participatory_processes/content_blocks/metrics_cell.rb +0 -25
  121. data/app/presenters/decidim/participatory_processes/participatory_process_metric_charts_presenter.rb +0 -21
  122. data/app/queries/decidim/participatory_processes/metrics/participatory_process_followers_metric_measure.rb +0 -31
  123. data/app/queries/decidim/participatory_processes/metrics/participatory_processes_metric_manage.rb +0 -27
  124. data/app/queries/decidim/participatory_processes/stats_followers_count.rb +0 -60
  125. data/app/queries/decidim/participatory_processes/stats_participants_count.rb +0 -136
  126. data/app/views/decidim/participatory_processes/admin/participatory_process_copies/new.html.erb +0 -19
  127. data/app/views/decidim/participatory_processes/participatory_processes/all_metrics.html.erb +0 -25
@@ -5,16 +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_steps: Copy steps
11
8
  decidim_area_id: Area
12
9
  description: Description
13
10
  developer_group: Promoter group
14
11
  document: Document
15
12
  domain: Domain
13
+ duplicate_categories: Duplicate categories
14
+ duplicate_components: Duplicate components
15
+ duplicate_steps: Duplicate steps
16
16
  end_date: End date
17
- hashtag: Hashtag
18
17
  hero_image: Home image
19
18
  import_attachments: Import attachments
20
19
  import_categories: Import categories
@@ -40,7 +39,6 @@ en:
40
39
  description: Description
41
40
  developer_group: Promoter group
42
41
  group_url: Website
43
- hashtag: Hashtag
44
42
  hero_image: Image
45
43
  local_area: Organization area
46
44
  meta_scope: Scope metadata
@@ -85,15 +83,12 @@ en:
85
83
  admin:
86
84
  actions:
87
85
  activate: Activate
88
- configure: Configure
89
86
  confirm_delete_process: Are you sure you want to delete this process? If you change your mind, you can restore it later.
90
87
  confirm_destroy: Confirm delete
91
88
  destroy: Delete
92
89
  duplicate: Duplicate
93
90
  edit: Edit
94
91
  import_process: Import
95
- menu_hidden: Hide
96
- moderate: Moderate
97
92
  new_process: New process
98
93
  new_process_group: New process group
99
94
  new_process_step: New phase
@@ -111,7 +106,7 @@ en:
111
106
  participatory_process_groups: Process groups
112
107
  participatory_process_groups_submenu:
113
108
  info: Info
114
- landing_page: Landing page
109
+ landing_page: Landing page layout
115
110
  participatory_processes: Processes
116
111
  participatory_processes_submenu:
117
112
  attachment_collections: Folders
@@ -119,7 +114,7 @@ en:
119
114
  attachments: Attachments
120
115
  components: Components
121
116
  info: About this process
122
- landing_page: Landing page
117
+ landing_page: Landing page layout
123
118
  moderations: Moderations
124
119
  private_users: Members
125
120
  process_admins: Process admins
@@ -135,16 +130,19 @@ en:
135
130
  name: Participatory process
136
131
  participatory_process_group:
137
132
  fields:
133
+ actions: Actions
138
134
  title: Title
139
135
  name: Process group
140
136
  participatory_process_step:
141
137
  fields:
138
+ actions: Actions
142
139
  end_date: End date
143
140
  start_date: Start date
144
141
  title: Title
145
142
  name: Participatory process phase
146
143
  participatory_process_user_role:
147
144
  fields:
145
+ actions: Actions
148
146
  email: Email
149
147
  name: Name
150
148
  role: Role
@@ -152,16 +150,16 @@ en:
152
150
  roles:
153
151
  admin: Administrator
154
152
  collaborator: Collaborator
153
+ evaluator: Evaluator
155
154
  moderator: Moderator
156
- valuator: Valuator
157
155
  user:
158
156
  fields:
159
157
  invitation_accepted_at: Invitation accepted at
160
158
  invitation_sent_at: Invitation sent at
161
159
  published: Published
162
- participatory_process_copies:
160
+ participatory_process_duplicates:
163
161
  new:
164
- copy: Copy
162
+ duplicate: Duplicate
165
163
  select: Select which data you would like to duplicate
166
164
  title: Duplicate participatory process
167
165
  participatory_process_groups:
@@ -262,7 +260,7 @@ en:
262
260
  update:
263
261
  error: There was a problem updating this participatory process.
264
262
  success: Participatory process successfully updated.
265
- participatory_processes_copies:
263
+ participatory_processes_duplicates:
266
264
  create:
267
265
  error: There was a problem duplicating this participatory process.
268
266
  success: Participatory process successfully duplicated.
@@ -344,11 +342,6 @@ en:
344
342
  not_found: 'The process type was not found on the database (ID: %{id}).'
345
343
  menu:
346
344
  processes: Processes
347
- metrics:
348
- participatory_processes:
349
- description: Number of participatory processes in this organization
350
- object: participatory processes
351
- title: Participatory processes
352
345
  open_data:
353
346
  help:
354
347
  participatory_processes:
@@ -359,7 +352,6 @@ en:
359
352
  developer_group: The developer group of the process. This is the organization that is promoting the process.
360
353
  end_date: The end date of the process
361
354
  follows_count: The number of users following this space
362
- hashtag: The process hashtag, used for Twitter/X
363
355
  id: The unique identifier of this process
364
356
  local_area: The local area of the process. This is the organization area where the process is taking place.
365
357
  meta_scope: The scope metadata of the process
@@ -419,6 +411,82 @@ en:
419
411
  participatory_processes:
420
412
  admin:
421
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
422
490
  highlighted_processes:
423
491
  active: Active
424
492
  all: All
@@ -427,7 +495,7 @@ en:
427
495
  new_import:
428
496
  accepted_types:
429
497
  json: JSON
430
- participatory_process_copies:
498
+ participatory_process_duplicates:
431
499
  form:
432
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}'
433
501
  participatory_process_groups:
@@ -459,6 +527,35 @@ en:
459
527
  title: General Information
460
528
  visibility: Visibility
461
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
462
559
  extra_data:
463
560
  name: Phase & duration
464
561
  hero:
@@ -476,9 +573,6 @@ en:
476
573
  highlighted_processes:
477
574
  active_spaces: Active processes
478
575
  see_all_spaces: See all processes
479
- participatory_process_steps:
480
- index:
481
- back_to_process: Back to the process page
482
576
  participatory_processes:
483
577
  description:
484
578
  area_name: Area
@@ -527,8 +621,193 @@ en:
527
621
  belongs_to_group: This process belongs to
528
622
  private_space: This is a private process
529
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
530
808
  statistics:
531
809
  processes_count: Processes
810
+ processes_count_tooltip: The number of participatory processes that are publicly available.
532
811
  layouts:
533
812
  decidim:
534
813
  participatory_process_groups: