# This is Python code for reporting marks. Make sure it doesn't give an error in Python.
# Email to poole@cs.ubc.ca

#The format should be:

#(name:str, email:str, [list_of_pages_authored:integer], [list_of_pages_critiqued:integer], {
#  id: (mark_out_of_20, """detailed comments"""),
#  id: (mark_out_of_20, """detailed comments""")})
# The detailed comments should be in full sentences. The feedback should be of the type you would like to receive.
# Any disrespectful comments will be removed. Please include the pages you critiqued and your page!

# Example:

("David Poole", "poole@cs.ubc.ca", [23], [22,24,30], {
    20: (13, """This page needs more examples to make it clearer for the reader.
It is difficult to determing what is going on from the page. 
I think the page was too long; it would have been better to have fewer details, 
explained better, with clear examples. I cannot see how example 3 fits in with 
the previous discussion, or what it is meant to show.
There were a number of comments in the critiques that were not fixed.
Figures 2 and 3 need proper references on the main page, as they are taken from another source,
and it isn't clear where unless we click multiple times.  Your references need to be better; 
did you really only take information from one source?"""),
    22: (19, """This page was very well written. Well done! The only negative feature was that it was
difficult to understand the formalism when it was first presented (but it became clear later). 
The examples were good.""")
})

#Template:
("Name", "email", [00], [00,00,00], {
    0: (0, """ """),
    1: (0, """ """),
    # up to
    17: (0,""" """)
})
