from django.utils.translation import ugettext_lazy as _
from django.views.decorators.cache import never_cache
+from django.conf import settings
from ajaxable.utils import AjaxableFormView
from catalogue.models import Book
class LoginFormView(AjaxableFormView):
form_class = AuthenticationForm
- #template = "auth/login.html"
title = _('Sign in')
submit = _('Sign in')
+ ajax_redirect = True
def __call__(self, request):
if request.user.is_authenticated():
class RegisterFormView(AjaxableFormView):
form_class = UserCreationForm
- #template = "auth/register.html"
title = _('Register')
submit = _('Register')
+ ajax_redirect = True
def __call__(self, request):
if request.user.is_authenticated():
if plan is None:
plan = []
try:
- feed = feedparser.parse('http://localhost:8000/documents/track/editor-proofreading/')
+ feed = feedparser.parse(settings.PUBLISH_PLAN_FEED)
except:
pass
else: