{% extends 'lessons/base.html' %} {% load static thumbnail wagtailcore_tags %} {% block central_content %} {% for lesson in lessons %}
  • Lesson #{{lesson.order}}
  • {{lesson.first_published_at | date:"M d, Y"}}
  • {% if lesson.tags.all.count %}
  • {% for tag in lesson.tags.all %} {{ tag }} {% endfor %}
  • {% endif %}
{{ lesson.title }}

{{lesson.short_description | safe | truncatewords:32 }}

Watch

{% endfor %} {% endblock %}