Skip to content

[Documentation:InstructorUI] Add dates to upload #601

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 58 additions & 8 deletions _docs/instructor/assignment_preparation/upload_gradeable.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,50 @@ __Other Electronic Types__
```json
"team_gradeable": {
"team_size_max": 3,
"inherit_from": "gradeable_id",
"inherit_from": "gradeable_id"
}
```
#### Grade inquiries
```json
"grading_inquiry": {
"grade_inquiry_per_component_allowed": false,
"grading_inquiries": false,
"grade_inquiries_per_component": false,
```
### Dates
All dates should be formatted as "yyyy-m-dd hh:ii:ss".

Four digit year, one or two digit month, two digit day, two digit hour, minute, and second.

* ta_view_start_date -- The date and time that the TA can view the gradeable
* submission_open_date -- The date and time that submissions open
* submission_due_date -- The date and time that submissions are due
* grade_start_date -- The date that TAs can start grading
* grade_due_date -- The date that TAs grades are due
* team_lock_date -- The date that students can no longer join/change teams
* grade_released_date -- The date that grades are released to students (only applicable if has_release_date is true)
* grade_inquiry_start_date -- The date that grade inquiries can start to be submitted if grade inquiries are allowed
* grade_inquiry_due_date -- The final day for grade inquiries if they are allowed.
* has_due_date -- (true/false) If the gradeable has a due date,
* has_release_date -- (true/false) If the gradeable has a grade_released_date
* late_days_allowed -- (true/false) If students are allowed to use late days on the assignment
* late_days -- The amount of late days students can use on the assignment
```json
"dates": {
"ta_view_start_date": "2024-1-10 23:59:59.00",
"submission_open_date": "2024-1-10 23:59:59.00",
"submission_due_date": "2024-2-10 23:59:59.00",
"grade_start_date": "2024-2-10 23:59:59.00",
"grade_due_date": "2024-3-10 23:59:59.00",
"team_lock_date": "2024-1-10 23:59:59.00",
"grade_released_date": "2024-3-10 23:59:59.00",
"grade_inquiry_start_date": "2024-3-10 23:59:59.00",
"grade_inquiry_due_date": "2024-3-10 23:59:59.00",
"has_due_date": false,
"has_release_date": false,
"late_days_allowed": false,
"late_days": 3
}
```

#### Other
* ta_grading -- If the TA will grade any/all of the assignments (Default false)
* discussion_thread_id -- The thread ID if using forums (Default none)
Expand All @@ -68,15 +103,29 @@ __Other Electronic Types__
},
"team_gradeable": {
"team_size_max": 3,
"inherit_from": "gradeable_id",
"inherit_from": "gradeable_id"
},
"bulk_upload": false,
"grading_inquiry": {
"grade_inquiry_per_component_allowed": false
},
"grading_inquiries": false,
"grade_inquiry_per_component_allowed": false,
"ta_grading": false,
"discussion_thread_id": "thread_id",
"syllabus_bucket": "Homework"
"syllabus_bucket": "Homework",
"dates": {
"ta_view_start_date": "2024-1-10 23:59:59",
"submission_open_date": "2024-1-10 23:59:59",
"submission_due_date": "2024-2-10 23:59:59",
"grade_start_date": "2024-2-10 23:59:59",
"grade_due_date": "2024-3-10 23:59:59",
"team_lock_date": "2024-1-10 23:59:59",
"grade_released_date": "2024-3-10 23:59:59",
"grade_inquiry_start_date": "2024-3-10 23:59:59",
"grade_inquiry_due_date": "2024-3-10 23:59:59",
"has_due_date": false,
"has_release_date": false,
"late_days_allowed": false,
"late_days": 3
}
}
```
#### Sample Bulk Upload Template
Expand Down Expand Up @@ -111,3 +160,4 @@ __Other Electronic Types__
"vcs_subdirectory": "subdirectory"
},
}
```