#
from datetime import date, datetime
import feedparser
+from allauth.socialaccount.views import SignupView
from django.conf import settings
from django.contrib import auth
from django.contrib.auth.decorators import login_required
-from django.contrib.auth.forms import UserCreationForm, AuthenticationForm
+from django.contrib.auth.forms import AuthenticationForm
from django.core.cache import cache
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render
from catalogue.models import Book, Collection, Tag, Fragment
from ssify import ssi_included
+from social.utils import get_or_choose_cite
+from wolnelektury.forms import RegistrationForm, SocialSignupForm
+
def main_page(request):
ctx = {
'last_published': Book.objects.exclude(cover_thumb='').filter(parent=None).order_by('-created_at')[:6],
- 'theme_books': []
+ 'theme_books': [],
+ 'cite': get_or_choose_cite(request),
}
# for category in ('author', 'epoch', 'genre', 'kind'):
# pass
# FIXME: find this theme and books properly.
- if Fragment.objects.count():
+ if Fragment.objects.exists():
while True:
ctx['theme'] = Tag.objects.filter(category='theme').order_by('?')[:1][0]
- tf = Fragment.tagged.with_any([ctx['theme']]).order_by('?')[:100]
+ tf = Fragment.tagged.with_any([ctx['theme']]).select_related('book').order_by('?')[:100]
if not tf:
continue
ctx['theme_fragment'] = tf[0]
class RegisterFormView(AjaxableFormView):
- form_class = UserCreationForm
+ form_class = RegistrationForm
template = "auth/register.html"
placeholdize = True
title = _('Register')
def extra_context(self, request, obj):
return {
- "register_form": placeholdized(UserCreationForm(prefix='register')),
+ "register_form": placeholdized(RegistrationForm(prefix='register')),
"register_submit": _('Register'),
}
@ssi_included(use_lang=False)
def widget(request):
return render(request, 'widget.html')
+
+
+class SocialSignupView(SignupView):
+ form_class = SocialSignupForm
+
+
+def exception_test(request):
+ msg = request.GET.get('msg')
+ if msg:
+ raise Exception('Exception test: %s' % msg)
+ else:
+ raise Exception('Exception test')
+
+
+def post_test(request):
+ return render(request, 'post_test.html', {'action': '/api/reading/jego-zasady/complete/'})