fix typo in _select_course.html template

This commit is contained in:
Benjamin Dauvergne 2012-11-06 16:58:45 +01:00
parent 1b4e57143f
commit 543e93ac4c
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
{% else %}
<option value="">---</option>
{% for course in courses.user_courses.courses %}
<option {% if not course.avaiblable %}disabled{% endif %} value="{{ course.id }}">{{ course.name }}</option>
<option {% if not course.available %}disabled{% endif %} value="{{ course.id }}">{{ course.name }}</option>
{% endfor %}
{% endif %}
</select>
@ -32,7 +32,7 @@
{% else %}
<option value="">---</option>
{% for course in courses.ue_courses.courses %}
<option {% if not course.avaiblable %}disabled{% endif %} value="{{ course.id }}">{{ course.name }}</option>
<option {% if not course.available %}disabled{% endif %} value="{{ course.id }}">{{ course.name }}</option>
{% endfor %}
{% endif %}
</select>