前提・実現したいこと
Simple calendarを使ってメモアプリを作成しているので、日付の表示を変更したい(月と日のみに)
発生している問題
現在は、2020-01-01のように表示されている画像
haml
1.simple-calendar 2 .calendar-heading{style: 'text-align: center;'} 3 = link_to t('simple_calendar.previous', default: '<<'), calendar.url_for_previous_view 4 %span.calendar-title 5 = t('date.month_names')[start_date.month] 6 = start_date.year 7 = link_to t('simple_calendar.next', default: '>>'), calendar.url_for_next_view 8 %table.table.table-striped 9 %thead 10 %tr 11 - date_range.slice(0, 7).each do |day| 12 %th= t('date.abbr_day_names')[day.wday] 13 %tbody 14 - date_range.each_slice(7) do |week| 15 %tr 16 - week.each do |day| 17 = content_tag :td, class: calendar.td_classes_for(day) do 18 - if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(passed_block) 19 - capture_haml(day, sorted_events.fetch(day, []), &passed_block) 20 - else 21 - passed_block.call day, sorted_events.fetch(day, [])
回答1件
あなたの回答
tips
プレビュー