<%= link_to environment_index_path(id: params[:id]), class: "flex items-center" do %> <% end %>
<%= @controller.id %>동 습도 스케줄러
<%= link_to "수정", schedule_edit_schedule_path(@controller.id), class: "btn bg-default-slate" %>
    <% if @schedule.present? %> <% @schedule.each do |s| %>
  • 시간
    <%= s.hour.to_s.rjust(2, '0') %>
    :
    <%= s.minute.to_s.rjust(2, '0') %>
    습도
    <%= s.temperature %>
    %
    ON/OFF
    <%#= s.is_active %> <% if s.is_active %> <% else %> <% end %>
  • <% end %> <% else %>
  • 저장된 스케줄이 없습니다.
  • <% end %>