simple_calendaを導入しております。
曜日の色とイベント発生日にbackgroundをつけたのですが、has-eventsのみが反映されない状況です。
一部のみ効かないのでcontrollerまたはviewに問題があるのかと思いますが、イベントのインスタンス変数はcountで件数は取れるので、登録には成功してると思います。
数時間考察したのですが、見当がつかない状態です。
お忙しい中、恐れ入りますが解決策をご教授いただけると幸いです。
宜しくお願い致します。
scss
1.simple-calendar { 2 .day {} 3 4 5 .wday-0 { 6 background:#FFE4E1; 7 } 8 .wday-1 {} 9 .wday-2 {} 10 .wday-3 {} 11 .wday-4 {} 12 .wday-5 {} 13 .wday-6 { 14 background: #E0FFFF; 15 } 16 17 .today {} 18 .past {} 19 .future {} 20 21 .start-date {} 22 23 .prev-month {} 24 .next-month { } 25 .current-month {} 26 27 .has-events { 28 background-color: #98fb98; ◀︎これのみ反映されない 29 } 30} 31
erb
1<h1><%= @user.name %> 様</h1> 2<%= "申請日数 #{@receptions.count}日" %> ◀︎ ここでeventsに付与した値の数は取れる 3 <%= "契約日数 #{@contact}日" %> 4<div class="col-md-5 col-md-offset-7" > 5 <%= link_to "受付追加(日単位)",day_edit_users_receptions_path, class: "btn btn-default", remote: true %> 6 <%= link_to "受付追加(月単位)", month_edit_users_reception_path(date: @first_day), class: "btn btn-default", local: true %> 7 8</div> 9<div class="col-md-10 col-md-offset-1" id="table-users"> 10 <%= month_calendar events: @receptions do |date,reception | %> 11 <% if Date.current <= date %> 12 <%= link_to date.day, users_reception_path(date), remote: true %> 13 <% @receptions.each do |reception| %> 14 <% end %> 15 <% else %> 16 <%= link_to date.day, "#", class: "disabled" %> 17 <% end %> 18 <% end %> 19</div> 20 21<div id="day-edit" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"></div> 22<div id="show" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"></div> 23<div id="show-edit" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"></div>
rb
1 @user = User.find(current_user.id) 2 @contact = @user.contact 3 @reception = @user.receptions.where.not(start_time: nil).find_by(date_of_use: params[:id]) 4 @receptions = @user.receptions.where.not(start_time: nil)
回答1件
あなたの回答
tips
プレビュー