fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
query strings in API + minor changes
[wolnelektury.git]
/
src
/
wolnelektury
/
views.py
diff --git
a/src/wolnelektury/views.py
b/src/wolnelektury/views.py
index
265f766
..
c62c2e5
100644
(file)
--- a/
src/wolnelektury/views.py
+++ b/
src/wolnelektury/views.py
@@
-22,6
+22,7
@@
from catalogue.models import Book, Collection, Tag, Fragment
from ssify import ssi_included
from social.utils import get_or_choose_cite
from ssify import ssi_included
from social.utils import get_or_choose_cite
+from wolnelektury.forms import RegistrationForm
def main_page(request):
def main_page(request):
@@
-83,7
+84,7
@@
class LoginFormView(AjaxableFormView):
class RegisterFormView(AjaxableFormView):
class RegisterFormView(AjaxableFormView):
- form_class =
UserCre
ationForm
+ form_class =
Registr
ationForm
template = "auth/register.html"
placeholdize = True
title = _('Register')
template = "auth/register.html"
placeholdize = True
title = _('Register')
@@
-183,3
+184,11
@@
def latest_blog_posts(request, feed_url=None, posts_to_show=5):
@ssi_included(use_lang=False)
def widget(request):
return render(request, 'widget.html')
@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