fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
changes to infopages done via admin panel
[wolnelektury.git]
/
wolnelektury
/
views.py
diff --git
a/wolnelektury/views.py
b/wolnelektury/views.py
index
361ec37
..
bcead03
100755
(executable)
--- a/
wolnelektury/views.py
+++ b/
wolnelektury/views.py
@@
-19,7
+19,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
+27,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')