from ssify import ssi_included
from social.utils import get_or_choose_cite
+from wolnelektury.forms import RegistrationForm
def main_page(request):
class RegisterFormView(AjaxableFormView):
- form_class = UserCreationForm
+ form_class = RegistrationForm
template = "auth/register.html"
placeholdize = True
title = _('Register')
@ssi_included(use_lang=False)
def widget(request):
return render(request, 'widget.html')
+
+
+def exception_test(request):
+ msg = request.GET.get('msg')
+ if msg:
+ raise Exception('Exception test: %s' % msg)
+ else:
+ raise Exception('Exception test')
\ No newline at end of file