From a59ed9fccce9251f366fdddc844f48910d808d2f Mon Sep 17 00:00:00 2001 From: Cezary Czaplewski Date: Fri, 10 Nov 2017 21:18:21 +0100 Subject: [PATCH] lazy_user singe job only --- .../templates/registration/login.html | 4 ++-- django_simple/todo/templates/index.html | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/django_simple/authentication/templates/registration/login.html b/django_simple/authentication/templates/registration/login.html index a222731..544ddab 100644 --- a/django_simple/authentication/templates/registration/login.html +++ b/django_simple/authentication/templates/registration/login.html @@ -3,7 +3,7 @@ {% block content %} -Run jobs without login. +Run a single job without login.
  • @@ -23,7 +23,7 @@ Run jobs without login.
    -Register and login to save your jobs. +Register and login to save many jobs. {% csrf_token %} diff --git a/django_simple/todo/templates/index.html b/django_simple/todo/templates/index.html index 6e40ad3..1aa90da 100644 --- a/django_simple/todo/templates/index.html +++ b/django_simple/todo/templates/index.html @@ -1,5 +1,5 @@ {% extends "base.html" %} - +{% load i18n lazysignup_tags %} {% block content %}
      @@ -19,7 +19,7 @@ - + {% if not user|is_lazy_user %}
    • {% csrf_token %} @@ -35,7 +35,7 @@
    • - + {% endif %}
    • done -- 1.7.9.5