Skip to content

Instantly share code, notes, and snippets.

@alxpck
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alxpck/a6ddc05b26dece6486fe to your computer and use it in GitHub Desktop.
Save alxpck/a6ddc05b26dece6486fe to your computer and use it in GitHub Desktop.
{% extends "layout.html" %}
{% block title %}{{ course.title }}{% endblock %}
{% block content %}
<article>
<h2>{{ course.title }}</h2>
{{ course.description }}
<section>
{% for step in course.step_set.all %}
<h3>{{ step.title }}</h3>
{{ step.description }}
{% endfor %}
</section>
</article>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment