2023-03-02 17:56:31 -05:00
|
|
|
<!DOCTYPE html>
|
2023-03-07 14:56:01 -05:00
|
|
|
<div class="csv-upload">
|
2023-03-07 17:52:36 -05:00
|
|
|
<h3> If you'd like to upload a CSV. Please do so here:</h3>
|
2023-03-02 17:56:31 -05:00
|
|
|
<p></p>
|
2023-03-07 14:56:01 -05:00
|
|
|
<form method="POST"
|
2023-03-08 16:11:32 -05:00
|
|
|
action="{{ url_for('upload_file') }}"
|
2023-03-07 14:56:01 -05:00
|
|
|
enctype="multipart/form-data">
|
2023-03-02 17:56:31 -05:00
|
|
|
<p><input type="file" name="file"></p>
|
2023-03-07 17:52:36 -05:00
|
|
|
<div class="radio-options">
|
2023-03-08 16:11:32 -05:00
|
|
|
<input type="radio" id="all-groups" name="learner-groups" value="all-groups" checked>
|
|
|
|
|
<label for="learner-groups">All Learners in All Groups</label>
|
2023-03-07 17:52:36 -05:00
|
|
|
</div>
|
|
|
|
|
<div class="radio-options">
|
2023-03-08 16:11:32 -05:00
|
|
|
<input type="radio" id="some-groups" name="learner-groups" value="some-groups">
|
|
|
|
|
<label for="learner-groups">Learners Only in Adjacent Groups</label>
|
2023-03-07 17:52:36 -05:00
|
|
|
</div>
|
2023-03-09 15:15:42 -05:00
|
|
|
<input type="submit" name="preview" value="Preview"></input>
|
2023-03-08 16:11:32 -05:00
|
|
|
<input type="submit" name="submit" value="Submit to Academy"></input>
|
2023-03-02 17:56:31 -05:00
|
|
|
</form>
|
2023-03-07 14:56:01 -05:00
|
|
|
</div>
|
2023-03-02 17:56:31 -05:00
|
|
|
|