decidim-admin 0.28.2 → 0.29.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/admin/content_block_cell.rb +0 -1
- data/app/cells/decidim/admin/results_per_page/show.erb +2 -2
- data/app/cells/decidim/admin/results_per_page_cell.rb +0 -2
- data/app/commands/decidim/admin/create_area.rb +4 -32
- data/app/commands/decidim/admin/create_area_type.rb +4 -33
- data/app/commands/decidim/admin/create_attachment.rb +5 -4
- data/app/commands/decidim/admin/create_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/create_category.rb +4 -37
- data/app/commands/decidim/admin/create_component.rb +7 -40
- data/app/commands/decidim/admin/create_newsletter.rb +11 -29
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +3 -3
- data/app/commands/decidim/admin/create_scope.rb +15 -32
- data/app/commands/decidim/admin/create_scope_type.rb +3 -32
- data/app/commands/decidim/admin/create_static_page.rb +6 -47
- data/app/commands/decidim/admin/create_static_page_topic.rb +4 -26
- data/app/commands/decidim/admin/deliver_newsletter.rb +4 -5
- data/app/commands/decidim/admin/destroy_area.rb +2 -25
- data/app/commands/decidim/admin/destroy_category.rb +4 -29
- data/app/commands/decidim/admin/destroy_component.rb +5 -42
- data/app/commands/decidim/admin/destroy_newsletter.rb +2 -30
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +5 -32
- data/app/commands/decidim/admin/destroy_scope.rb +6 -33
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/participatory_space/create_admin.rb +4 -4
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +5 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +4 -5
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +2 -41
- data/app/commands/decidim/admin/update_area_type.rb +2 -42
- data/app/commands/decidim/admin/update_attachment.rb +10 -7
- data/app/commands/decidim/admin/update_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/update_category.rb +2 -45
- data/app/commands/decidim/admin/update_component.rb +4 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +3 -3
- data/app/commands/decidim/admin/{update_external_domain_whitelist.rb → update_external_domain_allowlist.rb} +6 -5
- data/app/commands/decidim/admin/update_help_sections.rb +6 -3
- data/app/commands/decidim/admin/update_newsletter.rb +8 -8
- data/app/commands/decidim/admin/update_organization.rb +9 -53
- data/app/commands/decidim/admin/update_organization_appearance.rb +10 -81
- data/app/commands/decidim/admin/update_scope.rb +7 -40
- data/app/commands/decidim/admin/update_scope_type.rb +2 -42
- data/app/commands/decidim/admin/update_static_page.rb +5 -46
- data/app/commands/decidim/admin/update_static_page_topic.rb +2 -43
- data/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +2 -2
- data/app/controllers/concerns/decidim/admin/filterable.rb +78 -3
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +1 -1
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +0 -7
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/area_types_controller.rb +8 -9
- data/app/controllers/decidim/admin/areas_controller.rb +1 -1
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +1 -1
- data/app/controllers/decidim/admin/categories_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components_controller.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +1 -1
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +4 -4
- data/app/controllers/decidim/admin/moderations_controller.rb +7 -7
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +5 -5
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +1 -1
- data/app/controllers/decidim/admin/{organization_external_domain_whitelist_controller.rb → organization_external_domain_allowlist_controller.rb} +7 -7
- data/app/controllers/decidim/admin/scope_types_controller.rb +7 -8
- data/app/controllers/decidim/admin/scopes_controller.rb +1 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +1 -1
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/forms/decidim/admin/attachment_form.rb +7 -1
- data/app/forms/decidim/admin/organization_appearance_form.rb +0 -3
- data/app/forms/decidim/admin/{organization_external_domain_whitelist_form.rb → organization_external_domain_allowlist_form.rb} +3 -3
- data/app/forms/decidim/admin/organization_form.rb +2 -2
- data/app/forms/decidim/admin/static_page_form.rb +0 -1
- data/app/helpers/decidim/admin/filterable_helper.rb +19 -3
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +3 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -3
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +2 -2
- data/app/packs/entrypoints/decidim_admin.js +4 -1
- data/app/packs/src/decidim/admin/application.js +19 -15
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- data/app/packs/src/decidim/admin/form.js +18 -1
- data/app/packs/src/decidim/admin/participatory_space_search.js +1 -1
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +2 -2
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +27 -0
- data/app/packs/src/decidim/admin/text_copy.js +19 -0
- data/app/packs/stylesheets/decidim/admin/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +62 -0
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +8 -0
- data/app/packs/stylesheets/decidim/admin/_proposal_status.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +2 -0
- data/app/permissions/decidim/admin/permissions.rb +2 -2
- data/app/queries/decidim/admin/user_filter.rb +4 -4
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/_form.html.erb +21 -2
- data/app/views/decidim/admin/attachments/index.html.erb +2 -2
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +26 -8
- data/app/views/decidim/admin/categories/index.html.erb +2 -2
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/_pending_moderations.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/new.html.erb +2 -2
- data/app/views/decidim/admin/logs/_filters.html.erb +3 -3
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +2 -2
- data/app/views/decidim/admin/moderations/index.html.erb +5 -5
- data/app/views/decidim/admin/moderations/reports/index.html.erb +6 -6
- data/app/views/decidim/admin/moderations/reports/show.html.erb +4 -4
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +2 -2
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +7 -7
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +3 -3
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- data/app/views/decidim/admin/organization/_form.html.erb +3 -3
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +0 -3
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -5
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_external_domain.html.erb +4 -4
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_form.html.erb +2 -2
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/edit.html.erb +2 -2
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +1 -1
- data/app/views/decidim/admin/shared/_adjacent_navigation.html.erb +30 -0
- data/app/views/decidim/admin/shared/_admin_confirm_modal.html.erb +7 -7
- data/app/views/decidim/admin/shared/_filters.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +1 -1
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +2 -2
- data/app/views/decidim/admin/static_page_topics/index.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_form.html.erb +0 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_admin_timeout_modal.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_callouts_full.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +2 -2
- data/config/locales/ar.yml +0 -7
- data/config/locales/bg.yml +15 -10
- data/config/locales/ca.yml +16 -11
- data/config/locales/cs.yml +15 -10
- data/config/locales/de.yml +15 -10
- data/config/locales/el.yml +0 -12
- data/config/locales/en.yml +16 -11
- data/config/locales/es-MX.yml +16 -11
- data/config/locales/es-PY.yml +16 -11
- data/config/locales/es.yml +16 -11
- data/config/locales/eu.yml +16 -11
- data/config/locales/fi-plain.yml +14 -9
- data/config/locales/fi.yml +14 -9
- data/config/locales/fr-CA.yml +14 -9
- data/config/locales/fr.yml +13 -8
- data/config/locales/ga-IE.yml +0 -3
- data/config/locales/gl.yml +0 -5
- data/config/locales/hu.yml +9 -10
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +0 -3
- data/config/locales/it.yml +0 -8
- data/config/locales/ja.yml +16 -11
- data/config/locales/kaa.yml +0 -3
- data/config/locales/ko.yml +0 -6
- data/config/locales/lb.yml +0 -8
- data/config/locales/lt.yml +0 -13
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -8
- data/config/locales/no.yml +0 -8
- data/config/locales/pl.yml +14 -9
- data/config/locales/pt-BR.yml +8 -10
- data/config/locales/pt.yml +0 -8
- data/config/locales/ro-RO.yml +0 -12
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -3
- data/config/locales/sq-AL.yml +0 -3
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +0 -8
- data/config/locales/th-TH.yml +0 -3
- data/config/locales/tr-TR.yml +0 -5
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -3
- data/config/locales/zh-TW.yml +0 -12
- data/config/routes.rb +1 -1
- data/decidim-admin.gemspec +1 -1
- data/lib/decidim/admin/import/creator.rb +1 -1
- data/lib/decidim/admin/import/importer_factory.rb +2 -2
- data/lib/decidim/admin/menu.rb +4 -4
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +4 -2
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +3 -2
- data/lib/decidim/admin/test/filterable_examples.rb +5 -3
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +5 -5
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +1 -1
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +12 -12
- data/lib/decidim/admin/test/manage_attachments_examples.rb +51 -15
- data/lib/decidim/admin/test/manage_categories_examples.rb +13 -13
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +4 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +21 -21
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +3 -3
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/version.rb +1 -1
- metadata +24 -22
- data/app/commands/decidim/admin/destroy_share_token.rb +0 -46
- data/app/commands/decidim/admin/destroy_static_page.rb +0 -40
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +0 -40
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
@@ -14,24 +14,42 @@
|
|
14
14
|
</h2>
|
15
15
|
</div>
|
16
16
|
<div class="card-section">
|
17
|
-
<table class="table-list
|
17
|
+
<table class="table-list">
|
18
18
|
<thead>
|
19
19
|
<tr>
|
20
20
|
<th><%= t("decidim.authorization_handlers.name") %></th>
|
21
|
-
<th><%= t("decidim.authorization_handlers.help") %></th>
|
21
|
+
<th class="!text-left"><%= t("decidim.authorization_handlers.help") %></th>
|
22
22
|
</tr>
|
23
23
|
</thead>
|
24
24
|
<tbody>
|
25
25
|
<% @workflows.each do |manifest| %>
|
26
26
|
<tr>
|
27
27
|
<% workflow = Decidim::Verifications::Adapter.new(manifest) %>
|
28
|
-
<td><%= link_to workflow.fullname, workflow.admin_root_path %></td>
|
29
28
|
<td>
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
29
|
+
<% if workflow.has_admin_root_path? %>
|
30
|
+
<%= link_to workflow.fullname, workflow.admin_root_path %>
|
31
|
+
<% else %>
|
32
|
+
<%= workflow.fullname %>
|
33
|
+
<% end %>
|
34
|
+
</td>
|
35
|
+
<td class="!text-left">
|
36
|
+
<% i18n_key = "decidim.authorization_handlers.admin.#{workflow.key}.help" %>
|
37
|
+
<% if I18n.exists?(i18n_key, current_locale) %>
|
38
|
+
<ul class="list-decimal ml-4">
|
39
|
+
<% t(i18n_key).each do |tip| %>
|
40
|
+
<li><%= tip %></li>
|
41
|
+
<% end %>
|
42
|
+
</ul>
|
43
|
+
<% else %>
|
44
|
+
<div class="flash warning">
|
45
|
+
<ul>
|
46
|
+
<% default_help = t("decidim.authorization_handlers.admin.default.help", authorization_handler: i18n_key) %>
|
47
|
+
<% default_help.each do |tip| %>
|
48
|
+
<li><%= tip %></li>
|
49
|
+
<% end %>
|
50
|
+
</ul>
|
51
|
+
</div>
|
52
|
+
<% end %>
|
35
53
|
</td>
|
36
54
|
</tr>
|
37
55
|
<% end %>
|
@@ -14,7 +14,7 @@
|
|
14
14
|
<thead>
|
15
15
|
<tr>
|
16
16
|
<th><%= t("activemodel.attributes.category.name") %></th>
|
17
|
-
<th
|
17
|
+
<th></th>
|
18
18
|
</tr>
|
19
19
|
</thead>
|
20
20
|
<tbody>
|
@@ -38,7 +38,7 @@
|
|
38
38
|
</td>
|
39
39
|
</tr>
|
40
40
|
<% category.subcategories.each do |subcategory| %>
|
41
|
-
<tr
|
41
|
+
<tr>
|
42
42
|
<td>
|
43
43
|
<%= link_to translated_attribute(subcategory.name), edit_category_path(current_participatory_space, subcategory) %><br>
|
44
44
|
</td>
|
@@ -59,7 +59,7 @@
|
|
59
59
|
|
60
60
|
<div id="panel-step_settings" class="card-section">
|
61
61
|
<div class="row column">
|
62
|
-
<fieldset
|
62
|
+
<fieldset>
|
63
63
|
<div class="card-section">
|
64
64
|
<% current_participatory_space.steps.each do |step| %>
|
65
65
|
<fieldset class="step-settings-<%= step.id %>">
|
@@ -6,7 +6,7 @@
|
|
6
6
|
</div>
|
7
7
|
|
8
8
|
<div class="card-section">
|
9
|
-
<p><%= t(".
|
9
|
+
<p><%= t(".announcement", count: count_pending_moderations) %></p>
|
10
10
|
<p><%= link_to t(".goto_moderation"), moderations_path, class: "button button__sm button__secondary mt-2" %></p>
|
11
11
|
</div>
|
12
12
|
</div>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<span class="exports button button__sm button__secondary
|
1
|
+
<span class="exports button button__sm button__secondary" data-toggle="<%= dropdown_id(filters) %>">
|
2
2
|
<% if filters.present? %>
|
3
3
|
<%= t("actions.export-selection", scope: "decidim.admin") %>
|
4
4
|
<% else %>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<% add_decidim_page_title(t("impersonatable_users", scope: "decidim.admin.titles")) %>
|
2
2
|
<% if current_organization.available_authorizations.empty? %>
|
3
|
-
<div
|
3
|
+
<div>
|
4
4
|
<%= cell("decidim/announcement", t(".needs_authorization_warning"), callout_class: "warning" ) %>
|
5
5
|
</div>
|
6
6
|
<% end %>
|
@@ -32,7 +32,7 @@
|
|
32
32
|
</div>
|
33
33
|
<div class="fcell search">
|
34
34
|
<%= form_tag "", method: :get do %>
|
35
|
-
<div
|
35
|
+
<div>
|
36
36
|
<div class="input-group">
|
37
37
|
<%= search_field_tag :q, @query,label: false, class: "input-group-field", placeholder: t(".search") %>
|
38
38
|
<%= hidden_field_tag :state, @state %>
|
@@ -64,7 +64,7 @@
|
|
64
64
|
<td><%= user.managed? ? t(".managed") : t(".not_managed") %></td>
|
65
65
|
<td class="table-list__actions">
|
66
66
|
<% if allowed_to? :impersonate, :impersonatable_user, user: user %>
|
67
|
-
<%= icon_link_to "
|
67
|
+
<%= icon_link_to "user-line", new_impersonatable_user_impersonation_path(user), t(".impersonate"), class: "action-icon--impersonate" %>
|
68
68
|
<% end %>
|
69
69
|
<%= icon_link_to "time-line", impersonatable_user_impersonation_logs_path(user), t(".view_logs"), class: "action-icon--view-logs" %>
|
70
70
|
<% if allowed_to? :promote, :impersonatable_user, user: user %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<span class="imports button button__sm button__secondary
|
1
|
+
<span class="imports button button__sm button__secondary" data-toggle="import-dropdown">
|
2
2
|
<%= t "actions.import", scope: "decidim.admin" %>
|
3
3
|
<%= icon "arrow-down-s-line", class: "dropdown-filter-icon" %>
|
4
4
|
</span>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
<div id="js-other-actions-wrapper">
|
7
7
|
<% if import_manifest.has_example? %>
|
8
|
-
<span class="imports-example
|
8
|
+
<span class="imports-example button button__sm button__secondary mr-2" data-toggle="example-dropdown">
|
9
9
|
<%= t(".download_example") %>
|
10
10
|
<%= icon "arrow-down-s-line", class: "dropdown-filter-icon" %>
|
11
11
|
</span>
|
@@ -21,7 +21,7 @@
|
|
21
21
|
</div>
|
22
22
|
<% end %>
|
23
23
|
|
24
|
-
<%= link_to t(".actions.back"), manage_component_path(@current_component), class: "button button__sm button__secondary hollow
|
24
|
+
<%= link_to t(".actions.back"), manage_component_path(@current_component), class: "button button__sm button__secondary hollow button--simple" %>
|
25
25
|
</div>
|
26
26
|
</h1>
|
27
27
|
</div>
|
@@ -11,14 +11,14 @@
|
|
11
11
|
} %>
|
12
12
|
</div>
|
13
13
|
<div class="row column">
|
14
|
-
<%= form.datetime_field :created_at_dtgteq %>
|
14
|
+
<%= form.datetime_field :created_at_dtgteq, hide_help: true %>
|
15
15
|
</div>
|
16
16
|
<div class="row column">
|
17
|
-
<%= form.datetime_field :created_at_dtlteq %>
|
17
|
+
<%= form.datetime_field :created_at_dtlteq, hide_help: true, default_time: "23:59" %>
|
18
18
|
</div>
|
19
19
|
<div class="row column">
|
20
20
|
<div class="grid grid-cols-[70%_30%] items-end gap-x-4">
|
21
|
-
<div class="cell
|
21
|
+
<div class="cell">
|
22
22
|
<%= form.search_field(search_field_predicate, class: "input-group-field", label: t(".user"), placeholder: t(".text")) %>
|
23
23
|
</div>
|
24
24
|
<div class="cell">
|
@@ -21,7 +21,7 @@
|
|
21
21
|
<th><%= t(".reason") %></th>
|
22
22
|
<th><%= sort_link(query, :created_at, t("models.moderation.fields.created_at", scope: "decidim.moderations")) %></th>
|
23
23
|
<th><%= sort_link(query, :report_count, t(".reports"), default_order: :desc) %></th>
|
24
|
-
<th
|
24
|
+
<th><%= t(".actions.title") %></th>
|
25
25
|
</tr>
|
26
26
|
</thead>
|
27
27
|
<tbody>
|
@@ -45,7 +45,7 @@
|
|
45
45
|
<%= moderation.report_count %>
|
46
46
|
</td>
|
47
47
|
|
48
|
-
<td
|
48
|
+
<td>
|
49
49
|
<% if !moderation.user.blocked? && allowed_to?(:unreport, :moderate_users) %>
|
50
50
|
<%= icon_link_to "arrow-go-back-line", ignore_moderated_user_path(id: moderation), t(".actions.unreport"), class: "action-icon--unreport", method: :put %>
|
51
51
|
<% end %>
|
@@ -27,7 +27,7 @@
|
|
27
27
|
<% if params[:hidden] %>
|
28
28
|
<th><%= t("models.moderation.fields.hidden_at", scope: "decidim.moderations") %></th>
|
29
29
|
<% end %>
|
30
|
-
<th
|
30
|
+
<th><%= t("actions.title", scope: "decidim.moderations") %></th>
|
31
31
|
</tr>
|
32
32
|
</thead>
|
33
33
|
<tbody>
|
@@ -69,22 +69,22 @@
|
|
69
69
|
<%= l(moderation.hidden_at, format: :long) if moderation.hidden_at.present? %>
|
70
70
|
</td>
|
71
71
|
<% end %>
|
72
|
-
<td
|
72
|
+
<td>
|
73
73
|
<%= icon_link_to "fullscreen-line",
|
74
74
|
moderation_reports_path(moderation_id: moderation),
|
75
75
|
t("actions.expand", scope: "decidim.moderations"),
|
76
76
|
class: "action-icon--expand" %>
|
77
|
-
<% if !moderation.reportable.hidden? && allowed_to?(:unreport,
|
77
|
+
<% if !moderation.reportable.hidden? && allowed_to?(:unreport, authorization_scope) %>
|
78
78
|
<%= icon_link_to "arrow-go-back-line",
|
79
79
|
unreport_moderation_path(id: moderation),
|
80
80
|
t("actions.unreport", scope: "decidim.moderations"),
|
81
81
|
class: "action-icon--unreport",
|
82
82
|
method: :put %>
|
83
83
|
<% end %>
|
84
|
-
<% if !moderation.reportable.hidden? && allowed_to?(:hide,
|
84
|
+
<% if !moderation.reportable.hidden? && allowed_to?(:hide, authorization_scope) %>
|
85
85
|
<%= icon_link_to "eye-line", hide_moderation_path(id: moderation), t("actions.hide", scope: "decidim.moderations"), class: "action-icon--hide", method: :put %>
|
86
86
|
<% end %>
|
87
|
-
<% if moderation.reportable.hidden? && allowed_to?(:unhide,
|
87
|
+
<% if moderation.reportable.hidden? && allowed_to?(:unhide, authorization_scope) %>
|
88
88
|
<%= icon_link_to "eye-line", unhide_moderation_path(id: moderation), t("actions.unhide", scope: "decidim.moderations"), method: :put %>
|
89
89
|
<% end %>
|
90
90
|
</td>
|
@@ -38,7 +38,7 @@
|
|
38
38
|
<% end %>
|
39
39
|
</dt>
|
40
40
|
<dd class="reported-content">
|
41
|
-
<div
|
41
|
+
<div>
|
42
42
|
<%= reported_content_for moderation.reportable %>
|
43
43
|
</div>
|
44
44
|
<% if translatable_resource?(moderation.reportable) %>
|
@@ -70,7 +70,7 @@
|
|
70
70
|
<th><%= t("models.report.fields.reason", scope: "decidim.moderations") %></th>
|
71
71
|
<th><%= t("models.report.fields.locale", scope: "decidim.moderations") %></th>
|
72
72
|
<th><%= t("models.report.fields.details", scope: "decidim.moderations") %></th>
|
73
|
-
<th
|
73
|
+
<th><%= t("actions.title", scope: "decidim.moderations") %></th>
|
74
74
|
</tr>
|
75
75
|
</thead>
|
76
76
|
<tbody>
|
@@ -79,7 +79,7 @@
|
|
79
79
|
<td><%= t("decidim.admin.moderations.report.reasons.#{report.reason}") %></td>
|
80
80
|
<td><%= report.locale.present? ? locale_name(report.locale) : "" %></td>
|
81
81
|
<td><%= report.details&.truncate(250) %></td>
|
82
|
-
<td
|
82
|
+
<td>
|
83
83
|
<%= icon_link_to "fullscreen-line",
|
84
84
|
moderation_report_path(moderation_id: moderation, id: report.id),
|
85
85
|
t("actions.expand", scope: "decidim.moderations"),
|
@@ -92,13 +92,13 @@
|
|
92
92
|
</div>
|
93
93
|
<div class="item__edit-sticky">
|
94
94
|
<div class="item__edit-sticky-container">
|
95
|
-
<% if !moderation.reportable.hidden? && allowed_to?(:unreport,
|
95
|
+
<% if !moderation.reportable.hidden? && allowed_to?(:unreport, authorization_scope) %>
|
96
96
|
<%= link_to t("actions.unreport", scope: "decidim.moderations"), unreport_moderation_path(id: moderation), method: :put, class: "button button__sm button__secondary" %>
|
97
97
|
<% end %>
|
98
|
-
<% if !moderation.reportable.hidden? && allowed_to?(:hide,
|
98
|
+
<% if !moderation.reportable.hidden? && allowed_to?(:hide, authorization_scope) %>
|
99
99
|
<%= link_to t("actions.hide", scope: "decidim.moderations"), hide_moderation_path(id: moderation), method: :put, class: "button button__sm button__secondary alert" %>
|
100
100
|
<% end %>
|
101
|
-
<% if moderation.reportable.hidden? && allowed_to?(:unhide,
|
101
|
+
<% if moderation.reportable.hidden? && allowed_to?(:unhide, authorization_scope) %>
|
102
102
|
<%= link_to t("actions.unhide", scope: "decidim.moderations"), unhide_moderation_path(id: moderation), method: :put, class: "button button__sm button__secondary alert" %>
|
103
103
|
<% end %>
|
104
104
|
</div>
|
@@ -31,7 +31,7 @@
|
|
31
31
|
<% end %>
|
32
32
|
</dt>
|
33
33
|
<dd class="reported-content">
|
34
|
-
<div
|
34
|
+
<div>
|
35
35
|
<%= reported_content_for moderation.reportable, locale: @report.locale %>
|
36
36
|
</div>
|
37
37
|
<% if translatable_resource?(moderation.reportable) %>
|
@@ -51,13 +51,13 @@
|
|
51
51
|
|
52
52
|
<div class="item__edit-sticky">
|
53
53
|
<div class="item__edit-sticky-container">
|
54
|
-
<% if !moderation.reportable.hidden? && allowed_to?(:unreport,
|
54
|
+
<% if !moderation.reportable.hidden? && allowed_to?(:unreport, authorization_scope) %>
|
55
55
|
<%= link_to t("actions.unreport", scope: "decidim.moderations"), unreport_moderation_path(id: moderation), method: :put, class: "button button__sm button__secondary" %>
|
56
56
|
<% end %>
|
57
|
-
<% if !moderation.reportable.hidden? && allowed_to?(:hide,
|
57
|
+
<% if !moderation.reportable.hidden? && allowed_to?(:hide, authorization_scope) %>
|
58
58
|
<%= link_to t("actions.hide", scope: "decidim.moderations"), hide_moderation_path(id: moderation), method: :put, class: "button button__sm button__secondary alert" %>
|
59
59
|
<% end %>
|
60
|
-
<% if moderation.reportable.hidden? && allowed_to?(:unhide,
|
60
|
+
<% if moderation.reportable.hidden? && allowed_to?(:unhide, authorization_scope) %>
|
61
61
|
<%= link_to t("actions.unhide", scope: "decidim.moderations"), unhide_moderation_path(id: moderation), method: :put, class: "button button__sm button__secondary alert" %>
|
62
62
|
<% end %>
|
63
63
|
</div>
|
@@ -10,8 +10,8 @@
|
|
10
10
|
<div class="card-section">
|
11
11
|
<div class="grid md:grid-cols-2 gap-x-8 p-4">
|
12
12
|
<% templates.each do |newsletter_template| %>
|
13
|
-
<div class="card
|
14
|
-
<iframe src="<%= preview_newsletter_template_path(newsletter_template.name) %>" class="
|
13
|
+
<div class="card pb-12 md:pb-0" id="<%= newsletter_template.name %>">
|
14
|
+
<iframe src="<%= preview_newsletter_template_path(newsletter_template.name) %>" class="w-full h-[60dvh]" data-email-preview>
|
15
15
|
</iframe>
|
16
16
|
<div class="card-footer">
|
17
17
|
<h2 class="card-title flex items-center">
|
@@ -6,14 +6,14 @@
|
|
6
6
|
</div>
|
7
7
|
<div class="item__edit-form">
|
8
8
|
<div class="card">
|
9
|
-
<div class="card-section
|
10
|
-
<iframe src="<%= preview_newsletter_template_path(template_manifest.name) %>" class="
|
9
|
+
<div class="card-section">
|
10
|
+
<iframe src="<%= preview_newsletter_template_path(template_manifest.name) %>" class="w-full h-[60dvh]" data-email-preview>
|
11
11
|
</iframe>
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
<div class="item__edit-sticky">
|
15
|
+
<div class="item__edit-sticky-container">
|
16
|
+
<%= link_to(t(".use_template"), new_newsletter_template_newsletter_path(template_manifest.name), class: "button button__sm button__secondary") %>
|
17
17
|
</div>
|
18
18
|
</div>
|
19
19
|
</div>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<%= t ".title" %>
|
6
6
|
<div class="flex ml-auto items-center gap-x-4">
|
7
7
|
<strong class="font-bold text-md text-gray-2"><%= t("newsletters.index.subscribed_count", scope: "decidim.admin") %></strong>
|
8
|
-
<span class="
|
8
|
+
<span data-subscribed-count class="font-semibold text-md text-gray-2"><%= recipients_count_query %></span>
|
9
9
|
<% if allowed_to? :create, :newsletter %>
|
10
10
|
<%= link_to t("actions.newsletter.new", scope: "decidim.admin"), [:newsletter_templates], class: "button button__sm button__secondary new" %>
|
11
11
|
<% end %>
|
@@ -22,14 +22,14 @@
|
|
22
22
|
<div class="card-section">
|
23
23
|
<div class="row column">
|
24
24
|
<% if current_user.admin? %>
|
25
|
-
<div class="grid-x
|
25
|
+
<div class="grid-x">
|
26
26
|
<div class="cell small-12" id="send_newsletter_to_all_users">
|
27
27
|
<%= f.check_box :send_to_all_users, help_text: t(".all_users_help") %>
|
28
28
|
</div>
|
29
29
|
</div>
|
30
|
-
<hr
|
30
|
+
<hr>
|
31
31
|
<% end %>
|
32
|
-
<div class="grid-x
|
32
|
+
<div class="grid-x">
|
33
33
|
<div class="cell small-12 medium-6" id="send_newsletter_to_followers">
|
34
34
|
<%= f.check_box :send_to_participants, help_text: t(".participants_help") %>
|
35
35
|
</div>
|
@@ -21,7 +21,7 @@
|
|
21
21
|
<dt class="font-bold"><%= t("models.newsletter.fields.sent_to", scope: "decidim.admin") %></dt>
|
22
22
|
<dd><%= selective_newsletter_to newsletter %></dd>
|
23
23
|
</dl>
|
24
|
-
<iframe src="<%= preview_newsletter_path(@newsletter) %>" class="
|
24
|
+
<iframe src="<%= preview_newsletter_path(@newsletter) %>" class="w-full h-[60lvh]" data-email-preview>
|
25
25
|
</iframe>
|
26
26
|
</div>
|
27
27
|
</div>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<div class="card-section">
|
4
4
|
<div class="row column">
|
5
5
|
<div class="columns">
|
6
|
-
<%= form.text_field :name %>
|
6
|
+
<%= form.translated :text_field, :name %>
|
7
7
|
</div>
|
8
8
|
|
9
9
|
<div class="columns">
|
@@ -14,7 +14,7 @@
|
|
14
14
|
<ul class="tabs tabs--lang" data-tabs id="organization_social_handlers">
|
15
15
|
<% first_handler = Decidim::Organization::SOCIAL_HANDLERS.first %>
|
16
16
|
<% Decidim::Organization::SOCIAL_HANDLERS.each do |handler| %>
|
17
|
-
<li class="tabs-title
|
17
|
+
<li class="tabs-title <%= " is-active" if handler == first_handler %>">
|
18
18
|
<a href="#<%= handler %>" <% if handler == first_handler %> aria-selected="true" <% end %>>
|
19
19
|
<%= t(".#{handler}") %>
|
20
20
|
</a>
|
@@ -24,7 +24,7 @@
|
|
24
24
|
</div>
|
25
25
|
<div class="tabs-content" data-tabs-content="organization_social_handlers">
|
26
26
|
<% Decidim::Organization::SOCIAL_HANDLERS.each do |handler| %>
|
27
|
-
<div class="tabs-panel
|
27
|
+
<div class="tabs-panel <%= " is-active" if handler == first_handler %>" id="<%= handler %>"
|
28
28
|
aria-hidden="<% if handler == first_handler %>false<% else %>true<% end %>">
|
29
29
|
<%= form.text_field "#{handler}_handler", label: false %>
|
30
30
|
</div>
|
@@ -60,9 +60,6 @@
|
|
60
60
|
<%= form.color_field :primary_color, value: current_organization.colors["primary"] %>
|
61
61
|
<%= form.color_field :secondary_color, value: current_organization.colors["secondary"] %>
|
62
62
|
<%= form.color_field :tertiary_color, value: current_organization.colors["tertiary"] %>
|
63
|
-
<%= form.color_field :success_color, value: current_organization.colors["success"] %>
|
64
|
-
<%= form.color_field :warning_color, value: current_organization.colors["warning"] %>
|
65
|
-
<%= form.color_field :alert_color, value: current_organization.colors["alert"] %>
|
66
63
|
</div>
|
67
64
|
</div>
|
68
65
|
</div>
|
@@ -10,13 +10,13 @@
|
|
10
10
|
|
11
11
|
<div id="panel-layout_appearance_title" class="card-section">
|
12
12
|
<div class="row column">
|
13
|
-
<div
|
13
|
+
<div>
|
14
14
|
<label for="minimap"><%= t(".preview") %></label>
|
15
15
|
<%= render "decidim/admin/organization_appearance/form/minimap" %>
|
16
16
|
</div>
|
17
17
|
|
18
|
-
<div class="
|
19
|
-
<div
|
18
|
+
<div class="mt-8 grid grid-cols-1 md:grid-cols-2 gap-8">
|
19
|
+
<div>
|
20
20
|
<%= form.upload(
|
21
21
|
:favicon,
|
22
22
|
dimensions_info: current_organization.attached_uploader(:favicon).dimensions_info,
|
@@ -26,7 +26,7 @@
|
|
26
26
|
) %>
|
27
27
|
</div>
|
28
28
|
|
29
|
-
<div
|
29
|
+
<div>
|
30
30
|
<%= form.upload(
|
31
31
|
:logo,
|
32
32
|
dimensions_info: current_organization.attached_uploader(:logo).dimensions_info,
|
@@ -35,7 +35,7 @@
|
|
35
35
|
) %>
|
36
36
|
</div>
|
37
37
|
|
38
|
-
<div
|
38
|
+
<div>
|
39
39
|
<%= form.upload(
|
40
40
|
:official_img_footer,
|
41
41
|
dimensions_info: current_organization.attached_uploader(:official_img_footer).dimensions_info,
|
@@ -5,15 +5,15 @@
|
|
5
5
|
<span><%= t(".external_domain") %></span>
|
6
6
|
|
7
7
|
<div class="flex items-center ml-auto gap-x-4">
|
8
|
-
<button class="button button__sm button__transparent-secondary small alert
|
8
|
+
<button class="button button__sm button__transparent-secondary small alert move-up-question button--title">
|
9
9
|
<%== "#{icon("arrow-up-line")} #{t(".up")}" %>
|
10
10
|
</button>
|
11
11
|
|
12
|
-
<button class="button button__sm button__transparent-secondary small alert
|
12
|
+
<button class="button button__sm button__transparent-secondary small alert move-down-question button--title">
|
13
13
|
<%== "#{icon("arrow-down-line")} #{t(".down")}" %>
|
14
14
|
</button>
|
15
15
|
|
16
|
-
<button class="button button__sm button__transparent-secondary small alert
|
16
|
+
<button class="button button__sm button__transparent-secondary small alert remove-external-domain button--title">
|
17
17
|
<%= icon("delete-bin-line") %>
|
18
18
|
<%= t(".remove") %>
|
19
19
|
</button>
|
@@ -23,7 +23,7 @@
|
|
23
23
|
|
24
24
|
<div class="card-section">
|
25
25
|
<div class="grid-x">
|
26
|
-
<div class="cell
|
26
|
+
<div class="cell">
|
27
27
|
<div class="row column">
|
28
28
|
<%= form.text_field :value %>
|
29
29
|
</div>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="card">
|
3
3
|
<div class="card-section">
|
4
4
|
<% if form.send(:error?, :external_domains) %>
|
5
|
-
<div
|
5
|
+
<div>
|
6
6
|
<div> </div>
|
7
7
|
<%= form.send(:error_and_help_text, :external_domains) %>
|
8
8
|
</div>
|
@@ -27,7 +27,7 @@
|
|
27
27
|
<% end %>
|
28
28
|
</div>
|
29
29
|
<div class="row column">
|
30
|
-
<button class="button button__sm button__secondary small
|
30
|
+
<button class="button button__sm button__secondary small add-external-domain"><%= t(".add") %></button>
|
31
31
|
</div>
|
32
32
|
</div>
|
33
33
|
</div>
|
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
<div class="item_show__header">
|
4
4
|
<h1 class="item_show__header-title">
|
5
|
-
<%= t("title", scope: "decidim.admin.
|
5
|
+
<%= t("title", scope: "decidim.admin.organization_external_domain_allowlist.form") %>
|
6
6
|
</h1>
|
7
7
|
</div>
|
8
8
|
|
9
9
|
<div class="item__edit-form">
|
10
|
-
<%= decidim_form_for(@form, html: { class: "form-defaults form
|
10
|
+
<%= decidim_form_for(@form, html: { class: "form-defaults form edit_organization_external_domain_allowlist" }, url: organization_external_domain_allowlist_path, method: :patch) do |f| %>
|
11
11
|
<%= render partial: "form", object: f %>
|
12
12
|
<div class="item__edit-sticky">
|
13
13
|
<div class="item__edit-sticky-container">
|
@@ -36,7 +36,7 @@
|
|
36
36
|
</div>
|
37
37
|
<div class="card-section p-4">
|
38
38
|
<%= decidim_form_for(@form, url: participatory_space_private_users_csv_imports_path, html: { class: "form form-defaults" }) do |form| %>
|
39
|
-
<div
|
39
|
+
<div>
|
40
40
|
<p><%= t(".explanation") %></p>
|
41
41
|
<p><%= t(".example_file") %></p>
|
42
42
|
<code class="code-block"><%= t(".explanation_example", csv_col_sep: Decidim.default_csv_col_sep) %></code>
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<th><%= t("models.share_token.fields.last_used_at", scope: "decidim.admin") %></th>
|
18
18
|
<th><%= t("models.share_token.fields.created_at", scope: "decidim.admin") %></th>
|
19
19
|
<th><%= t("models.share_token.fields.expires_at", scope: "decidim.admin") %></th>
|
20
|
-
<th
|
20
|
+
<th></th>
|
21
21
|
</tr>
|
22
22
|
</thead>
|
23
23
|
<tbody>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<% adjacent_paths ||= {} %>
|
2
|
+
<div class="flex justify-between mb-4">
|
3
|
+
<span>
|
4
|
+
<% if adjacent_paths["prev_item"].present? %>
|
5
|
+
<%= link_to(
|
6
|
+
adjacent_paths["prev_item"],
|
7
|
+
class: "button button__sm button__text-secondary",
|
8
|
+
title: t("previous_title", scope: "decidim.admin.shared.adjacent_navigation"),
|
9
|
+
rel: "prev"
|
10
|
+
) do %>
|
11
|
+
<%= icon "arrow-left-s-line", class: "fill-current" %>
|
12
|
+
<%= t("previous", scope: "decidim.admin.shared.adjacent_navigation") %>
|
13
|
+
<% end %>
|
14
|
+
<% end %>
|
15
|
+
</span>
|
16
|
+
|
17
|
+
<span>
|
18
|
+
<% if adjacent_paths["next_item"].present? %>
|
19
|
+
<%= link_to(
|
20
|
+
adjacent_paths["next_item"],
|
21
|
+
class: "button button__sm button__text-secondary",
|
22
|
+
title: t("next_title", scope: "decidim.admin.shared.adjacent_navigation"),
|
23
|
+
rel: "next"
|
24
|
+
) do %>
|
25
|
+
<%= t("next", scope: "decidim.admin.shared.adjacent_navigation") %>
|
26
|
+
<%= icon "arrow-right-s-line", class: "fill-current" %>
|
27
|
+
<% end %>
|
28
|
+
<% end %>
|
29
|
+
</span>
|
30
|
+
</div>
|
@@ -1,18 +1,18 @@
|
|
1
|
-
<div class="small
|
2
|
-
<div
|
3
|
-
<h2
|
1
|
+
<div class="small" id="confirm-modal" aria-hidden="true" role="dialog" aria-labelledby="confirm-modal-title" data-reveal data-multiple-opened="true">
|
2
|
+
<div>
|
3
|
+
<h2 id="confirm-modal-title"><%= t("title", scope: "decidim.shared.confirm_modal") %></h2>
|
4
4
|
<button class="close-button" data-close aria-label="<%= t("close_modal", scope: "decidim.shared.confirm_modal") %>"
|
5
5
|
type="button">
|
6
6
|
<span aria-hidden="true">×</span>
|
7
7
|
</button>
|
8
8
|
</div>
|
9
|
-
<div
|
9
|
+
<div>
|
10
10
|
<div class="confirm-modal-content"></div>
|
11
11
|
</div>
|
12
|
-
<div class="confirm-modal-footer
|
13
|
-
<div
|
12
|
+
<div class="confirm-modal-footer">
|
13
|
+
<div>
|
14
14
|
<a class="button" role="button" href="#" data-confirm-ok aria-label="<%= t("ok", scope: "decidim.shared.confirm_modal") %>"><%= t("ok", scope: "decidim.shared.confirm_modal") %></a>
|
15
|
-
<a class="button
|
15
|
+
<a class="button" role="button" href="#" data-confirm-cancel aria-label="<%= t("cancel", scope: "decidim.shared.confirm_modal") %>"><%= t("cancel", scope: "decidim.shared.confirm_modal") %></a>
|
16
16
|
</div>
|
17
17
|
</div>
|
18
18
|
</div>
|