<tbody> {% for staff in user_list %} <tr align="center"> <th class="staff_name" staff_id="{{ staff.staff_id }}" width="200" >{{ staff.last_name }} {{ staff.first_name }}</th> <!--staff_id要素はjsで使う--> {% for item in object_list %} {% if item.user|stringformat:"s" == staff.username|stringformat:"s" %} ###ここで文字列に変換 <td class="day_{{ item.date }}" id="s{{ staff.id }}d{{ item.date }}"> {{ item.shift_nam
