# frozen_string_literal: true require "cell/partial" module Decidim module Proposals # This cell renders the link to the source collaborative draft of a proposal. class ProposalLinkToCollaborativeDraftCell < ProposalLinkedResourcesCell private def linked_resource @linked_resource ||= model.linked_resources(:collaborative_draft, "created_from_collaborative_draft").first end def link_to_resource link_to resource_locator(linked_resource).path, class: "link" do t("link_to_collaborative_draft_text", scope: "decidim.proposals.proposals.show") end end def link_help_text t("link_to_collaborative_draft_help_text", scope: "decidim.proposals.proposals.show") end end end end