diff --git a/courses/templates/course/view.html b/courses/templates/course/view.html index ea52079..6825163 100644 --- a/courses/templates/course/view.html +++ b/courses/templates/course/view.html @@ -19,21 +19,34 @@ {% endblock %} {% block sidebar %} - {{block.super}} +
{% trans 'Course Name' %}: {{course.name}}
-{% trans 'Coordinator' %}: {{course.professors}}
+Course Name: {{course.name}}
+Coordinator: {{course.professors}}
- {% trans 'Description' %}: + Description: {{course.description}} @@ -61,7 +74,7 @@
{% trans "Professor" %}: {% for professor in subject.professors.all %}{% if not forloop.first %},{% endif %} - {{professor}}{% if forloop.last %}.{% endif %}{% endfor %}
-- {% trans "Description" %}: - - {{subject.description}} - -
-{% trans "Begining" %}: {{subject.init_date}}
-{% trans "End" %}: {{subject.end_date}}
-{% trans "Professor" %}: {% for professor in subject.professors.all %}{% if not forloop.first %},{% endif %} + {{professor}}{% if forloop.last %}.{% endif %}{% endfor %}
++ {% trans "Description" %}: + + {{subject.description}} + +
+{% trans "Begining" %}: {{subject.init_date}}
{% trans "End" %}: {{subject.end_date}}
+{% trans "Professor" %}: {% for professor in subject.professors.all %}{% if not forloop.first %},{% endif %} {{professor}}{% if forloop.last %}.{% endif %}{% endfor %}
@@ -209,8 +230,8 @@
{% trans "End" %}: {{subject.end_date}}