{% extends "impala/base_shared.html" %}
{% block title %}The War on Spam{% endblock %}
{% block content %}
Do these smell like SPAM to you?
{% set keys = (
('matches', 'Needs more Creativity'),
('urls', 'HyperLink OverFlow'),
('numbers', 'Overwhelmingly Productive'),
) %}
{% set trans = {
'urls': 'containing urls',
'numbers': 'creating too many reviews',
'matches': 'duplicate content',
} %}
{% for key, title in keys %}
{% if buckets[key] %}
{{ title }}
{% for review in buckets[key] %}
{% endfor %}
{% endif %}
{% endfor %}
These are the reasons we're flagging: {{ buckets.keys()|pprint }}