{% extends 'base.html' %} {% block content %} {% macro filter_dropdown(id, filter, plural='') %} {% if plural != '' %} {{ plural }} {% else %} {{ id }}s {% endif%} {% for thing in filter %} {{ thing[1] }} {% endfor %} {% endmacro%} {% macro filter_dropdown_nokey(id, filter, plural='') %} {% if plural != '' %} {{ plural }} {% else %} {{ id }}s {% endif%} {% for thing in filter %} {{ thing }} {% endfor %} {% endmacro%}