Commit 170950c6a51c9d755e6199d9b31c52501a412c6e

Authored by Zambom
1 parent c781b9f7

Showing subject category in card [Issue: #206]

Showing 1 changed file with 3 additions and 0 deletions   Show diff stats
courses/templates/course/view.html
... ... @@ -173,6 +173,9 @@
173 173 <p><b>{% trans "Professor" %}: </b>{% for professor in subject.professors.all %}{% if not forloop.first %},{% endif %}
174 174 {{professor}}{% if forloop.last %}.{% endif %}{% endfor %}</p>
175 175 <p>
  176 + <b>{% trans 'Category' %}: </b><i>{{ subject.category }}</i>
  177 + </p>
  178 + <p>
176 179 <b>{% trans "Description" %}: </b>
177 180 <i>
178 181 {{subject.description}}
... ...