{% extends "base.html" %} {% load static %} {% block content %} {% include "includes/sidenav.html" %}
{% if course.thumbnail %} Course Thumbnail {% else %}
{% endif %}

{{ course.title|capfirst }}

{% if request.user == course.instructor.user %} Edit Course Back to Dashboard {% endif %}

{{ course.description|truncatewords:50 }}

Instructor: {{ course.instructor.user.username }} Updated: {{ course.updated_at|date:"F d, Y" }}
Level: {% if course.level == "BEG" %} {{ course.get_level_display }} {% elif course.level == "INT" %} {{ course.get_level_display }} {% elif course.level == "ADV" %} {{ course.get_level_display }} {% endif %}
{% for tag in course.tags.all %} {{ tag.name }} {% endfor %}
{% endblock content %}