add CourseDetail, CourseStudentResults

This commit is contained in:
Luzivanlt 2023-02-23 23:11:52 +07:00
parent b629459b46
commit 1797b9fe06
10 changed files with 205 additions and 17 deletions

View file

@ -9,11 +9,11 @@
<body>
<h1>Enrolling</h1>
{% for course in enrolling %}
<h2> {{ course }} </h2>
<h2><a href="{{ url('course_detail',course.name) }}"> {{ course }} </a></h2>
{% endfor %}
<h1> Available </h1>
{% for course in available %}
<h2> {{ course }} </h2>
<h2><a href="{{ url('course_detail',course.name) }}"> {{ course }} </a></h2>
{% endfor %}
</body>
</html>