annotate gpp/templates/antispam/blocked.html @ 492:3c48a555298d

Added a custom tag to display a link to a profile. Refactored the avatar tag to optionally display a profile link around the image. Removed the width and height attributes from the avatar image tag. I think this was causing disk hits whenever those properties were not cached. The avatar tag is now an inclusion tag.
author Brian Neal <bgneal@gmail.com>
date Sat, 22 Oct 2011 00:07:50 +0000
parents 7c3816d76c6c
children
rev   line source
bgneal@472 1 {% extends 'base.html' %}
bgneal@472 2 {% load url from future %}
bgneal@472 3 {% block title %}Blocked{% endblock %}
bgneal@472 4 {% block content %}
bgneal@472 5 <h2>Blocked</h2>
bgneal@472 6 <p class="error">
bgneal@472 7 Oops, we are detecting some strange behavior and are blocking this action. If you
bgneal@472 8 feel this is an error, please feel to <a href="{% url 'contact-form' %}">contact us</a>
bgneal@472 9 and let us know what you were doing on the site. Thank you.
bgneal@472 10 </p>
bgneal@472 11 {% endblock %}