Sha256: f7b1c7a44c59ce5512a1b1ee4d61d9241ce84bd50428b7d8556515a81f492c0f
Contents?: true
Size: 705 Bytes
Versions: 55
Compression:
Stored size: 705 Bytes
Contents
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
55 entries across 55 versions & 1 rubygems