Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit 55d1fd2

Browse files
committed
remove self-paced until it is fixed in new server
1 parent 789d9c4 commit 55d1fd2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

modules/rs_practice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _get_practice_data(user, timezoneoffset, db):
1818
practice_today_left = 0
1919
points_received = 0
2020
total_possible_points = 0
21-
flashcard_creation_method = 0
21+
flashcard_creation_method = 2
2222
questions_to_complete_day = 0
2323
practice_graded = 1
2424
spacing = 0

views/admin/practice.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -222,19 +222,19 @@
222222
<div class="form-group">
223223
<label for="flashcardsCreationTypeInput">Choose how topic flashcards should be generated for students:</label>
224224
<select class="form-control" id="flashcardsCreationTypeInput" name="flashcardsCreationType">
225-
<option value="0"
225+
<option value="2"
226+
{{if flashcard_creation_method == 2:}}
227+
selected="selected"
228+
{{ pass }}
229+
>
230+
Manually by the instructor
231+
</option>
232+
<option value="0"
226233
{{if flashcard_creation_method == 0:}}
227234
selected="selected"
228235
{{ pass }}
229236
>
230-
Self-paced (when student marks a page complete)
231-
</option>
232-
<option value="2"
233-
{{if flashcard_creation_method == 2:}}
234-
selected="selected"
235-
{{ pass }}
236-
>
237-
Manually by the instructor
237+
Self-paced (DO NOT USE)
238238
</option>
239239
</select>
240240
{{if error_flashcard_creation_method == 1:}}

0 commit comments

Comments
 (0)