Sha256: dcc0582707bce71ff9af24218c9eaaa8988e0ad6328815303899bd14fe89942c
Contents?: true
Size: 735 Bytes
Versions: 13
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module ContentProviders # Provides a form for a Participant to plan a new Activity. class InputNewActivityForm < BitCore::ContentProvider def render_current(options) options.view_context.render( template: "think_feel_do_engine/activities/input_new_activity_form", locals: { create_path: options.view_context.participant_data_path } ) end def data_attributes [ "1" => [:activity_type_title, :predicted_accomplishment_intensity], "0" => [:activity_type_title, :predicted_pleasure_intensity] ] end def data_class_name "UnplannedActivities" end def show_nav_link? false end end end
Version data entries
13 entries across 13 versions & 1 rubygems