12 lines
500 B
Plaintext
12 lines
500 B
Plaintext
|
|
<div class="pl-1 w-full">
|
||
|
|
<%= plan_fields.text_field :title, label: { text: "Plan Title" }, class: "w-full", data: { add_plan_target: "plan" } %>
|
||
|
|
</div>
|
||
|
|
<div class="pl-1 w-full">
|
||
|
|
<%= plan_fields.text_field :plan_id, label: { text: "Plan Id" }, class: "w-full" %>
|
||
|
|
</div>
|
||
|
|
<div class="pl-1">
|
||
|
|
<%= f.select :template_id, options_from_collection_for_select(@plan_templates, :id, :title), { prompt: "Select Plan Template" }, { data: { action: "benefits-template-picker#fetchData" }} %>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|