from django import template register = template.Library() @register.simple_tag def country_flag(country): if not country: return '' return ' ' % ( country.code.lower(), country.name) # vim: set ts=4 sw=4 et: