Sha256: 46c56ff93c05e17f7b55adba82d8f60e3e83b6c8624d5c9317e8592421780a7f
Contents?: true
Size: 1.16 KB
Versions: 24
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true require "cell/partial" module Decidim module Proposals # This cell renders the proposal card for an instance of a Proposal # the default size is the Medium Card (:m) class ProposalCell < Decidim::ViewModel include ProposalCellsHelper include Cell::ViewModel::Partial include Messaging::ConversationHelper def show cell card_size, model, options end private def card_size "decidim/proposals/proposal_m" end def resource_path resource_locator(model).path(filter_link_params) end def current_participatory_space model.component.participatory_space end def current_component model.component end def component_name translated_attribute model.component.name end def component_type_name model.class.model_name.human end def participatory_space_name translated_attribute current_participatory_space.title end def participatory_space_type_name translated_attribute current_participatory_space.model_name.human end end end end
Version data entries
24 entries across 24 versions & 1 rubygems