Sha256: c1da1c6081ccd3aab15b114266ed0fab5358b8fe499bb11ce7e6c59ebeed8735
Contents?: true
Size: 1.06 KB
Versions: 6
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true module Decidim module Amendable # This cell renders the button to amend the given resource. class PromoteButtonCardCell < Decidim::ViewModel def emendation @emendation ||= model end def model_name model.model_name.human end def current_component model.component end def promote_amend_path decidim.promote_amend_path(model.amendment) end def promote_amend_button_label t("promote_button", scope: "decidim.amendments.amendable", model_name:) end def promote_confirm_text t("promote_confirm_text", scope: "decidim.amendments.amendable") end def promote_amend_help_text content_tag :small do t("promote_help_text", scope: "decidim.amendments.amendable", model_name: model_name.downcase, amendable_fields: model.amendable_fields.to_sentence) end end def decidim Decidim::Core::Engine.routes.url_helpers end end end end
Version data entries
6 entries across 6 versions & 1 rubygems