fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
lazy gettext in pdf form
[wolnelektury.git]
/
wolnelektury
/
views.py
diff --git
a/wolnelektury/views.py
b/wolnelektury/views.py
index
01fac46
..
37df778
100755
(executable)
--- a/
wolnelektury/views.py
+++ b/
wolnelektury/views.py
@@
-2,6
+2,7
@@
from datetime import datetime
import feedparser
from django.contrib import auth
import feedparser
from django.contrib import auth
+from django.contrib.auth.decorators import login_required
from django.contrib.auth.forms import UserCreationForm, AuthenticationForm
from django.core.cache import cache
from django.http import HttpResponse, HttpResponseRedirect
from django.contrib.auth.forms import UserCreationForm, AuthenticationForm
from django.core.cache import cache
from django.http import HttpResponse, HttpResponseRedirect
@@
-19,7
+20,7
@@
from ajaxable.utils import placeholdized
@never_cache
def main_page(request):
@never_cache
def main_page(request):
- last_published = Book.objects.
exclude(html_file=''
).order_by('-created_at')[:4]
+ last_published = Book.objects.
filter(parent=None
).order_by('-created_at')[:4]
return render_to_response("main_page.html", locals(),
context_instance=RequestContext(request))
return render_to_response("main_page.html", locals(),
context_instance=RequestContext(request))
@@
-27,6
+28,7
@@
def main_page(request):
class LoginFormView(AjaxableFormView):
form_class = AuthenticationForm
class LoginFormView(AjaxableFormView):
form_class = AuthenticationForm
+ template = "auth/login.html"
placeholdize = True
title = _('Sign in')
submit = _('Sign in')
placeholdize = True
title = _('Sign in')
submit = _('Sign in')
@@
-34,7
+36,9
@@
class LoginFormView(AjaxableFormView):
def __call__(self, request):
if request.user.is_authenticated():
def __call__(self, request):
if request.user.is_authenticated():
- return HttpResponseRedirect('/')
+ return self.redirect_or_refresh(request, '/',
+ message=_('Already logged in as user %(user)s', ) %
+ {'user': request.user.username})
return super(LoginFormView, self).__call__(request)
def success(self, form, request):
return super(LoginFormView, self).__call__(request)
def success(self, form, request):
@@
-43,6
+47,7
@@
class LoginFormView(AjaxableFormView):
class RegisterFormView(AjaxableFormView):
form_class = UserCreationForm
class RegisterFormView(AjaxableFormView):
form_class = UserCreationForm
+ template = "auth/register.html"
placeholdize = True
title = _('Register')
submit = _('Register')
placeholdize = True
title = _('Register')
submit = _('Register')
@@
-51,7
+56,9
@@
class RegisterFormView(AjaxableFormView):
def __call__(self, request):
if request.user.is_authenticated():
def __call__(self, request):
if request.user.is_authenticated():
- return HttpResponseRedirect('/')
+ return self.redirect_or_refresh(request, '/',
+ message=_('Already logged in as user %(user)s', ) %
+ {'user': request.user.username})
return super(RegisterFormView, self).__call__(request)
def success(self, form, request):
return super(RegisterFormView, self).__call__(request)
def success(self, form, request):
@@
-67,7
+74,7
@@
class LoginRegisterFormView(LoginFormView):
template = 'auth/login_register.html'
title = _('You have to be logged in to continue')
template = 'auth/login_register.html'
title = _('You have to be logged in to continue')
- def extra_context(self):
+ def extra_context(self
, request, obj
):
return {
"register_form": placeholdized(UserCreationForm(prefix='register')),
"register_submit": _('Register'),
return {
"register_form": placeholdized(UserCreationForm(prefix='register')),
"register_submit": _('Register'),
@@
-99,7
+106,6
@@
def publish_plan(request):
pass
else:
for i in range(len(feed['entries'])):
pass
else:
for i in range(len(feed['entries'])):
- print i
plan.append({
'title': feed['entries'][i].title,
'link': feed['entries'][i].link,
plan.append({
'title': feed['entries'][i].title,
'link': feed['entries'][i].link,
@@
-108,3
+114,9
@@
def publish_plan(request):
return render_to_response("publish_plan.html", {'plan': plan},
context_instance=RequestContext(request))
return render_to_response("publish_plan.html", {'plan': plan},
context_instance=RequestContext(request))
+
+
+@login_required
+def user_settings(request):
+ return render_to_response("user.html",
+ context_instance=RequestContext(request))