Simple Calendarの日付表示を変更したい
Simple Calendarを導入しカレンダーを表示させていますが、
「2021-05-13」 という日付表示を「13」と言った日付のみの表示にしたいのですが、
変更の仕方がわかりません。
ご教示いただけますと幸いです。
該当のソースコード
yml
1#ja.yml 2ja: 3 time: 4 formats: 5 default: "%Y/%m/%d %H:%M" 6 date: 7 abbr_day_names: 8 - 日 9 - 月 10 - 火 11 - 水 12 - 木 13 - 金 14 - 土 15
ruby
1#_month_calender.html.erb 2<div class="simple-calendar"> 3 <div class="calendar-heading"> 4 <%= link_to t('simple_calendar.previous', default: '前月'), calendar.url_for_previous_view %> 5 <span class="calendar-title"><%= t('date.month_names')[start_date.month] %> <%= start_date.year %></span> 6 <%= link_to t('simple_calendar.next', default: '翌月'), calendar.url_for_next_view %> 7 </div> 8 9 <table class="table table-striped"> 10 <thead> 11 <tr> 12 <% date_range.slice(0, 7).each do |day| %> 13 <th><%= t('date.abbr_day_names')[day.wday] %></th> 14 <% end %> 15 </tr> 16 </thead> 17 18 <tbody> 19 <% date_range.each_slice(7) do |week| %> 20 <tr> 21 <% week.each do |day| %> 22 <%= content_tag :td, class: calendar.td_classes_for(day) do %> 23 24 <% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(passed_block) %> 25 <% capture_haml(day, sorted_events.fetch(day, []), &passed_block) %> 26 <% else %> 27 <% passed_block.call day, sorted_events.fetch(day, []) %> 28 29 <% end %> 30 <% end %> 31 <% end %> 32 </tr> 33 <% end %> 34 </tbody> 35 </table> 36</div> 37
ruby
1#view 2<%= month_calendar do |date| %> 3 <%= date %> 4 <% end %>
試したこと
ja.ymlにて下記の記述をしましたが反映されませんでした。
yml
1date: 2 formats: 3 default: "%d"
あなたの回答
tips
プレビュー