Completed client side time adjustment handling
Corrected error display bug Removed redundant auth and models in quiz client app
This commit is contained in:
@ -110,16 +110,16 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for entry in test.time_adjustments %}
|
||||
{% for key, value in test.time_adjustments.items() %}
|
||||
<tr>
|
||||
<td>
|
||||
{{ entry.user_code }}
|
||||
{{ key }}
|
||||
</td>
|
||||
<td>
|
||||
{{ entry.time_adjustment }}
|
||||
{{ value }}
|
||||
</td>
|
||||
<td>
|
||||
<a href="javascript::void(0);" class="btn btn-danger adjustment-delete" title="Delete Adjustment" data-_id="{{ entry._id }}" data-action="delete">
|
||||
<a href="javascript::void(0);" class="btn btn-danger adjustment-delete" title="Delete Adjustment" data-user_code="{{ key }}">
|
||||
<i class="bi bi-slash-circle-fill button-icon"></i>
|
||||
</a>
|
||||
</td>
|
||||
|
Reference in New Issue
Block a user