Skip to content

Instantly share code, notes, and snippets.

@markupboy
Created September 29, 2011 21:11
Show Gist options
  • Select an option

  • Save markupboy/1251963 to your computer and use it in GitHub Desktop.

Select an option

Save markupboy/1251963 to your computer and use it in GitHub Desktop.
{% extends "scores/base.html" %}
{% block body_class %} glossary {% endblock %}
{% block content %}
<dl>
{% for term in terms %}
<dt>
{{term.name}}
</dt>
<dd>
{{term.definition}}
</dd>
{% endfor %}
</dl>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment