add CourseDetail, CourseStudentResults
This commit is contained in:
parent
b629459b46
commit
1797b9fe06
10 changed files with 205 additions and 17 deletions
15
templates/course/course.html
Normal file
15
templates/course/course.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
{% for course in object_list %}
|
||||
<h1> {{ course.contest }} - {{ course.contest.start_time }} - {{ course.contest.end_time }} </h1>
|
||||
{% endfor %}
|
||||
<a href="{{ url('grades',slug) }}">View grades</a>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue