diff options
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/monitor.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/yaksh/templates/yaksh/monitor.html b/yaksh/templates/yaksh/monitor.html index 2e7097f..8df2e7d 100644 --- a/yaksh/templates/yaksh/monitor.html +++ b/yaksh/templates/yaksh/monitor.html @@ -140,11 +140,14 @@ $(document).ready(function() </div> {% endfor %} <b>Select Attempt Number: Default latest attempt</b> - <select class="form-control" id = "attempt_number"> - <option selected="">Latest</option> - {%for attempt_number in attempt_numbers %} - <option value = "{{ attempt_number }}"> {{ attempt_number }}</option> - {% endfor %} + <select class="form-control" name = "attempt_number"> + {%for attempt_number in attempt_numbers %} + {% if forloop.last %} + <option value="{{ attempt_number }}" selected>{{ attempt_number }} (Latest)</option> + {% else %} + <option value = "{{ attempt_number }}"> {{ attempt_number }}</option> + {% endif %} + {% endfor %} </select> </div> <div class="modal-footer"> |