Skip to content

Commit

Permalink
Fixed report generation
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas2499 committed Mar 6, 2024
1 parent 04da29e commit 709c3da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions healthScore/templates/view_history.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ <h4>Filter Your Health History</h4>
</thead>
<tbody>
{% for record, details in zipped_details %}
<tr onclick="getProperties(`{{ forloop.counter }}|{{ record.appointment_properties }}|{{record.appointment_name}}`)" data-toggle="modal" data-target="#myModal">
<td class="appointmentName">{{ record.appointment_name }}</td>
<tr>
<td class="appointmentName" onclick="getProperties(`{{ forloop.counter }}|{{ record.appointment_properties }}|{{record.appointment_name}}`)" data-toggle="modal" data-target="#myModal">{{ record.appointment_name }}</td>
<td>{{ record.appointment_type }}</td>
<td>{{ record.doctor_name }}</td>
<td>{{ record.hospital_name }}</td>
Expand Down

0 comments on commit 709c3da

Please sign in to comment.