Я хочу показать дату праздников в раскрывающемся меню в полях
_scheduled_holiday_fields. html .haml
%td= f.collection_select :holiday_id, SystemHoliday.all + TenantHoliday.where(tenant: @tenant),:id, :name, include_blank: "-- Select Holiday --", hide_label: true
В настоящее время в раскрывающемся меню отображается как:
Holiday
Christmas
В раскрывающемся меню я хочу отобразить как:
Holiday
Christmas (Dec 25)
У меня есть отдельная страница для того, чтобы человек мог ввести праздники, которые он отмечает, а также дату праздника.
мой вид формы:
= bootstrap_nested_form_for(@schedule,bsf_opts) do |f|
.section
.section_header Scheduled Holidays
.panel.panel-primary
.panel-body Select the holidays observed by your company as well as the office mode for each holiday.
%table.data#scheduled_holidays_table
%thead
%tr
%th
%th Holiday
%tbody
= f.fields_for :scheduled_holidays, wrapper: false
.panel-footer
.center= f.link_to_add "Add Holiday", :scheduled_holidays, class: :button, data: {target: "#scheduled_holidays_table"}
_scheduled_holiday_fields. html .haml:
%tr.fields
%td= f.collection_select :holiday_id, SystemHoliday.all + TenantHoliday.where(tenant: @tenant),:id, :name, include_blank: "-- Select Holiday --", hide_label: true