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/71e328856d0332352d4b to your computer and use it in GitHub Desktop.
Save alxpck/71e328856d0332352d4b to your computer and use it in GitHub Desktop.
{% extends "layout.html" %}
{% block title %}Available Courses{% endblock %}
{% block content %}
<div class="cards">
{% for course in courses %}
<div class="card">
<header><a href="{% url 'detail' pk=course.pk %}">{{ course.title }}</a></header>
<div class="card-copy">
{{ course.description }}
</div>
</div>
{% endfor %}
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment