{% for lecture in standalone_lectures %}

{{ lecture.title }}

{{ lecture.description|truncatewords:25|default:"No description provided." }}
Type: {{ lecture.get_content_type_display }}
Duration: {{ lecture.duration }} minutes
{% for tag in lecture.tags.all %} {{ tag.name }} {% endfor %}
{% if request.user.userprofile == lecture.instructor %} Edit Lecture {% endif %} View
{% endfor %}