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

Commit 4b719d6

Browse files
committed
Add: Sphinx developer docs.
1 parent 639f553 commit 4b719d6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

models/grouped_assignments.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# *************************************
2+
# |docname| - assignment-related tables
3+
# *************************************
4+
15
db.define_table(
26
"assignments",
37
Field("course", db.courses),
@@ -39,7 +43,7 @@
3943
Field("lis_result_sourcedid", "string", length=1024),
4044
# web service endpoint where you send signed xml messages to insert into gradebook; guid above will be one parameter you send in that xml; the actual grade and comment will be others
4145
#
42-
# Per the ``LTI spec v1.1.1 <https://www.imsglobal.org/specs/ltiv1p1p1/implementation-guide>`_ in section 6, the maximum length of the ``lis_outcome_url`` field is 1023 characters.
46+
# Per the `LTI spec v1.1.1 <https://www.imsglobal.org/specs/ltiv1p1p1/implementation-guide>`_ in section 6, the maximum length of the ``lis_outcome_url`` field is 1023 characters.
4347
Field("lis_outcome_url", "string", length=1024),
4448
migrate=table_migrate_prefix + "grades.table",
4549
)
@@ -57,6 +61,10 @@
5761
)
5862

5963

64+
# .. _question_grades table:
65+
#
66+
# question_grades
67+
# ===============
6068
db.define_table(
6169
"question_grades",
6270
# This table records grades on individual gradeable items

0 commit comments

Comments
 (0)