Sha256: 34155b9b444cbfbb59057b0385d68cecb00caf1b1293a36ccdc32bb7385419be
Contents?: true
Size: 1.31 KB
Versions: 13
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true module Decidim module Proposals # Simple helper to handle markup variations for participatory texts related partials module ParticipatoryTextsHelper # Returns the title for a given participatory text section. # # proposal - The current proposal item. # # Returns a string with the title of the section, subsection or article. def preview_participatory_text_section_title(proposal) title = decidim_html_escape(present(proposal).title) translated = t(proposal.participatory_text_level, scope: "decidim.proposals.admin.participatory_texts.sections", title:) translated.html_safe end # Public: A formatted collection of mime_type to be used # in forms. def mime_types_with_document_examples links = "" accepted_mime_types = Decidim::Proposals::DocToMarkdown::ACCEPTED_MIME_TYPES.keys accepted_mime_types.each_with_index do |mime_type, index| links += link_to t(".accepted_mime_types.#{mime_type}"), asset_pack_path("media/documents/participatory_text.#{mime_type}"), download: "participatory_text.#{mime_type}" links += ", " unless accepted_mime_types.length == index + 1 end links end end end end
Version data entries
13 entries across 13 versions & 1 rubygems