# HG changeset patch # User Brian Neal # Date 1469066580 18000 # Node ID 0219fafab7a656ff7a51b39e21939ea7c9a4fffd # Parent dd57bacde96146710d0209d2ab5f4dd9cb79d342 Convert antispam to v3 design. diff -r dd57bacde961 -r 0219fafab7a6 antispam/views.py --- a/antispam/views.py Wed Jul 20 20:54:36 2016 -0500 +++ b/antispam/views.py Wed Jul 20 21:03:00 2016 -0500 @@ -11,4 +11,5 @@ return render(request, 'antispam/suspended.html', { 'is_active': is_active, - }) + 'V3_DESIGN': True, + }) diff -r dd57bacde961 -r 0219fafab7a6 sg101/templates/antispam/suspended.html --- a/sg101/templates/antispam/suspended.html Wed Jul 20 20:54:36 2016 -0500 +++ b/sg101/templates/antispam/suspended.html Wed Jul 20 21:03:00 2016 -0500 @@ -1,19 +1,20 @@ -{% extends 'base.html' %} +{% extends 'v3/base.html' %} {% block title %}Account Suspension Status{% endblock %} {% block content %}

Account Suspension Status

{% if not is_active %} -

-Your post has tripped our spam filter. Your account has been suspended pending -a review of your post. If this was a mistake, we sincerely apologize and promise -your account will be restored soon. We regret having to take this drastic measure, but -the high volume of spam we recieve has forced us to take this action. If you have any -questions, please feel to contact us. -

+
+ Your post has tripped our spam filter. Your account has been suspended pending + a review of your post. If this was a mistake, we sincerely apologize and promise + your account will be restored soon. We regret having to take this drastic measure, but + the high volume of spam we recieve has forced us to take this action. If you have any + questions, please feel to + contact us. +
{% else %} -

-Your account has been restored and you should be able to make comments and forum -posts. We apologize for any inconvenience. -

+
+ Your account has been restored and you should be able to make comments and forum + posts. We apologize for any inconvenience. +
{% endif %} {% endblock %}