Start to refactor away from using camel case (Not sure why I did this in the first place)

This commit is contained in:
Peter Stockings
2023-12-09 16:14:10 +11:00
parent cc31cb098d
commit d967920e03
7 changed files with 18 additions and 36 deletions

View File

@@ -46,10 +46,8 @@
})
end">
{% for e in exercises %}
<option value="{{ e['ExerciseId'] }}" {% if e['ExerciseId'] in selected_exercise_ids
%}selected{% endif %}>{{
e['Name']
}}</option>
<option value="{{ e.exercise_id }}" {% if e.exercise_id in selected_exercise_ids
%}selected{% endif %}>{{ e.name }}</option>
{% endfor %}
</select>
</div>