我有一个月,周和日页面供用户查看他们的日历。路由如下:example.com/users/:id/month
,example.com/users/:id/week
,example.com/users/:id/day
。 month
和week
可以正常工作,但是我希望我的用户能够单击月度和每周日历中的各个日期,并转到其中包含事件列表的单个日期页面。 / p>
我不知道如何将日历单元格链接到各个日期页面。
这是我到目前为止所拥有的:
month_calender.html.erb
<div class="simple-calendar">
<div class="calendar-heading">
<%= link_to t('simple_calendar.previous', default: 'Previous'), calendar.url_for_previous_view %>
<span class="calendar-title"><%= t('date.month_names')[start_date.month] %> <%= start_date.year %></span>
<%= link_to t('simple_calendar.next', default: 'Next'), calendar.url_for_next_view %>
</div>
<table class="table table-striped">
<thead>
<tr>
<% date_range.slice(0, 7).each do |day| %>
<th><%= t('date.abbr_day_names')[day.wday] %></th>
<% end %>
</tr>
</thead>
<tbody>
<% date_range.each_slice(7) do |week| %>
<tr>
<% week.each do |day| %>
<%= link_to day_user_path(current_user) do %> . <--------------- Here's my problem...
<%= content_tag :td, class: calendar.td_classes_for(day) do %>
<% if defined?(Haml) && respond_to?(:block_is_haml?) && block_is_haml?(block) %>
<% capture_haml(day, sorted_events.fetch(day, []), &block) %>
<% else %>
<% block.call day, sorted_events.fetch(day, []) %>
<% end %>
<% end %>
<% end %>
<% end %>
</tr>
<% end %>
</tbody>
</table>
</div>