Brian S. Stephan fb04732ec3 facts: recreate the choices experience in facts
recreates the choices view in facts, allowing for display of any fact
category in the system, and providing a random item from it

bss/dr.botzo#15
2017-02-11 09:34:15 -06:00

12 lines
290 B
HTML

{% extends 'facts/base.html' %}
{% block title %}item sets{% endblock %}
{% block content %}
<ul>
{% for factcategory in factcategories %}
<li><a href="{% url 'facts_factcategory_detail' factcategory.name %}">{{ factcategory.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}