From 367c4d5aa807839b2106545cf8bc99a274e1a7f4 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 10 Oct 2016 07:36:00 +0200 Subject: new name: the last one. --- src/web/forms.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/web/forms.py') diff --git a/src/web/forms.py b/src/web/forms.py index a604897e..a1864175 100644 --- a/src/web/forms.py +++ b/src/web/forms.py @@ -1,10 +1,10 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# JARR - A Web based news aggregator. +# Newspipe - A Web based news aggregator. # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : http://github.com/JARR/JARR +# For more information : http://github.com/Newspipe/Newspipe # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -41,7 +41,7 @@ from web.models import User class SignupForm(Form): """ - Sign up form (registration to jarr). + Sign up form (registration to newspipe). """ nickname = TextField(lazy_gettext("Nickname"), [validators.Required(lazy_gettext("Please enter your nickname."))]) @@ -86,7 +86,7 @@ class RedirectForm(Form): class SigninForm(RedirectForm): """ - Sign in form (connection to jarr). + Sign in form (connection to newspipe). """ email_or_nickmane = TextField("Email or nickname", [validators.Length(min=3, max=35), -- cgit