annotate gpp/templates/antispam/suspended.html @ 549:c4696a0cbd3f

Altered the open graph meta tags tag to generate tags for the home page when None is supplied as a parameter. Updated the home page template to use it.
author Brian Neal <bgneal@gmail.com>
date Sun, 15 Jan 2012 13:27:37 -0600
parents daa2916f5b34
children
rev   line source
bgneal@215 1 {% extends 'base.html' %}
bgneal@310 2 {% load url from future %}
bgneal@215 3 {% block title %}Account Suspension Status{% endblock %}
bgneal@215 4 {% block content %}
bgneal@215 5 <h2>Account Suspension Status</h2>
bgneal@215 6 {% if not is_active %}
bgneal@215 7 <p class="error">
bgneal@215 8 Your post has tripped our spam filter. Your account has been suspended pending
bgneal@215 9 a review of your post. If this was a mistake, we sincerely apologize and promise
bgneal@215 10 your account will be restored soon. We regret having to take this drastic measure, but
bgneal@215 11 the high volume of spam we recieve has forced us to take this action. If you have any
bgneal@310 12 questions, please feel to <a href="{% url 'contact-form' %}">contact us</a>.
bgneal@215 13 </p>
bgneal@215 14 {% else %}
bgneal@215 15 <p class="success">
bgneal@215 16 Your account has been restored and you should be able to make comments and forum
bgneal@215 17 posts. We apologize for any inconvenience.
bgneal@215 18 </p>
bgneal@215 19 {% endif %}
bgneal@215 20 {% endblock %}