Skip to content

Commit

Permalink
fix annoyance
Browse files Browse the repository at this point in the history
  • Loading branch information
Highfire1 committed Jun 20, 2024
1 parent db19889 commit 227090b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion templates/course.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ <h2>Course Information:</h2>
<p>Credits:</p><p>{{ course_info.credits }}</p>
{# <p>Title:</p><p>{{ course_info.title }}</p> #}
{# TODO: NEEDS TO BE ADDED TO API#}
<p>Additional Fees:</p><p>${{ course_info.add_fees }}</p>
<p>Additional Fees:</p><p>
{% if course_info.add_fees != None %}
$
{% endif%}
{{ course_info.add_fees }}</p>
<p>Repeat Limit:</p><p>{{ course_info.rpt_limit }}</p>
<p>Lecture Hours:</p><p>{{ course_info.hours_lecture }}</p>
<p>Seminar Hours:</p><p>{{ course_info.hours_seminar }}</p>
Expand Down

0 comments on commit 227090b

Please sign in to comment.