33 lines
883 B
Plaintext
33 lines
883 B
Plaintext
<% if flash[:notice] %>
|
|
<div class="mb-4 rounded bg-green-100 px-4 py-2 text-green-800 border border-green-300">
|
|
<%= flash[:notice] %>
|
|
</div>
|
|
<% elsif flash[:alert] %>
|
|
<div class="mb-4 rounded bg-red-100 px-4 py-2 text-red-800 border border-red-300">
|
|
<%= flash[:alert] %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="flex flex-col h-full divide-y divide-border-table-border">
|
|
<div class="flex-1 overflow-y-auto p-4">
|
|
<table class="base-table">
|
|
<thead>
|
|
<tr>
|
|
<th>시간</th>
|
|
<th>온도</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @schedule.each do |s| %>
|
|
<tr>
|
|
<td><%= s.hour %>시</td>
|
|
<td><%= s.temperature %> °C</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="flex p-4">
|
|
<%= link_to "수정", "/modbus/schedule_edit", class: "btn bg-default-slate" %>
|
|
</div>
|
|
</div> |