File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ <h2 class="text-4xl text-center mb-8">
3232 < thead >
3333 < tr >
3434 < th scope ="col " class ="ttable__th ttable__th--start "> 時間</ th >
35- {% comment %} ルーム情報でヘッダーを描画 {% endcomment %}
35+ {% comment %} ルーム単位でヘッダーを描画 {% endcomment %}
3636 {% for room in rooms %}
3737 < th scope ="col "
3838 class ="ttable__th ttable__th--room "
@@ -44,18 +44,18 @@ <h2 class="text-4xl text-center mb-8">
4444 </ thead >
4545
4646 < tbody >
47- {% comment %} スロット情報 (行単位)でイベントを描画 {% endcomment %}
47+ {% comment %} スロット単位 (行単位)でイベントを描画 {% endcomment %}
4848 {% for slot in (0..total_slots) %}
4949 < tr >
5050 < th scope ="row " class ="ttable__cell ttable__cell--start "> {{ time_labels[slot] }}</ th >
5151
52- {% comment %} 各スロットのイベントを描画 {% endcomment %}
52+ {% comment %} 各イベントを描画 {% endcomment %}
5353 {% for room_index in (0..total_rooms) %}
5454 {% assign event = events[slot][room_index] %}
5555 {% assign room = rooms[room_index] %}
5656
5757 {% if event == 'continued' %}
58- {% comment %} イベント継続中 (rowspan で描画するため出力不要 ) {% endcomment %}
58+ {% comment %} イベント継続中 (rowspan で描画するため出力は不要 ) {% endcomment %}
5959 {% elsif event %}
6060 {% comment %} イベントを描画 {% endcomment %}
6161 {% assign accent = event.accent | default: room.style.color | default: '#c43b3b' %}
You can’t perform that action at this time.
0 commit comments