{% extends "factoids/base.html" %} {% block content %}

Facts List

{% for fact in facts %} {% endfor %}
Name Value Type Room Author Popularity
{{ fact.name }} {{ fact.get_ftype_display }} {% if fact.room %}{{ fact.room }}{% else %}all{% endif %} {% if fact.author %}{{ fact.author.username }}{% else %}N/A{% endif %} {{ fact.popularity }}
{% endblock %}