diff --git a/pinaxcon/monkey_patch.py b/pinaxcon/monkey_patch.py
index a9d99258..fa66128c 100644
--- a/pinaxcon/monkey_patch.py
+++ b/pinaxcon/monkey_patch.py
@@ -13,6 +13,7 @@ class MonkeyPatchMiddleware(object):
def do_monkey_patch():
patch_speaker_profile_form()
patch_accounts_to_send_bcc()
+ fix_sitetree_check_access_500s()
# Remove this function from existence
global do_monkey_patch
diff --git a/pinaxcon/templates/_form_snippet.html b/pinaxcon/templates/_form_snippet.html
index cb97f820..f8ca2d80 100644
--- a/pinaxcon/templates/_form_snippet.html
+++ b/pinaxcon/templates/_form_snippet.html
@@ -1,5 +1,10 @@
{% load lca2017_tags %}
+{% if form.non_field_errors %}
+ {{ form.non_field_errors }}
+
+{% endif %}
+
{% for field in form %}
{% if not field.is_hidden %}
+ {% trans "Accounts from previous years have not been carried over to this site." %} + {% trans "You will need to create a new account for this year's site." %} +