Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialThanitsak Leuangsupornpong
7,490 PointsWhat I need to do on the task 2, Form View, Takin' Names
Can you please give me more details,Thanks
from flask import Flask, render_template, flash, g
from flask.ext.login import LoginManager
import forms
import models
app = Flask(__name__)
app.secret_key = 'this is our super secret key. do not share it with anyone!'
login_manager = LoginManager()
login_manager.init_app(app)
@app.route('/register', methods=('GET', 'POST'))
def register():
form = forms.SignUpForm()
flash("Thanks for registering!", "success")
if form.validate_on_submit():
models.User.new(
email=form.email.data,
password=form.password.data,
)
return "register"
@login_manager.user_loader
def load_user(userid):
try:
return models.User.select().where(
models.User.id == int(userid)
).get()
except models.DoesNotExist:
return None
@app.before_request
def before_request():
g.db = models.DATABASE
g.db.connect()
@app.after_request
def after_request(response):
g.db.close()
return response
import datetime
from flask.ext.bcrypt import generate_password_hash
from flask.ext.login import UserMixin
from peewee import *
DATABASE = SqliteDatabase(':memory:')
class User(Model):
email = CharField(unique=True)
password = CharField(max_length=200)
join_date = DateTimeField(default=datetime.datetime.now)
bio = CharField(default='')
class Meta:
database = DATABASE
@classmethod
def new(cls, email, password):
cls.create(
email=email,
password=generate_password_hash(password)
)
def initialize():
DATABASE.connect()
DATABASE.create_tables([User], safe=True)
DATABASE.close()
from flask_wtf import Form
from wtforms import StringField, PasswordField
from wtforms.validators import DataRequired, Email, Length
class SignUpForm(Form):
email = StringField(validators=[DataRequired(), Email()])
password = PasswordField(validators=[DataRequired(), Length(min=200)])
4 Answers
Kenneth Love
Treehouse Guest TeacherYou need to render the template. Do you remember the name of the function that renders templates? To render the template, too, you need to pass it the form instance. Do you remember how to pass context variables to the templates?
Vittorio Somaschini
33,371 PointsHello Thanitsak.
I have read your code and I found a lot of similarities with this forum thread. I will link it here, please have a look at it:
I do think, you both guys experienced very similar struggles, so you may want to read it and if still something unclear please feel free to ask!
Thanks
Vittorio
Thanitsak Leuangsupornpong
7,490 PointsOh! I read already, but still not quite understand,how to render the template and form?
Thanks
Thanitsak Leuangsupornpong
7,490 PointsBut now I stuck on the task 3,and it said render template and form. What does it mean?Could you please explain it to me please thanks!
Here my file!
from flask import (Flask, render_template, flash, g )
from flask.ext.login import LoginManager
import forms
import models
app = Flask(__name__)
app.secret_key = 'auoesh.bouoastuh.43,uoausoehuosth3ououea.auoub!'
login_manager = LoginManager()
login_manager.init_app(app)
@app.route('/register', methods=('GET', 'POST'))
def register():
form = forms.SignUpForm()
flash("Thanks for registering!", "success")
if form.validate_on_submit():
models.User.new(
email=form.email.data,
password=form.password.data,
)
return "register"
return render_template('register.html', form=form)
@login_manager.user_loader
def load_user(userid):
try:
return models.User.select().where(
models.User.id == int(userid)
).get()
except models.DoesNotExist:
return None
@app.before_request
def before_request():
g.db = models.DATABASE
g.db.connect()
@app.after_request
def after_request(response):
g.db.close()
return response
Kenneth Love
Treehouse Guest TeacherLook at your if
. You're still just returning the word "register"
if they successfully sign up. The challenge wants you to still render the template.
Also, your flash should be inside the if
since you don't want to say "thanks for signing up" before they signed up.
Thanitsak Leuangsupornpong
7,490 PointsThank you everyone for help me,I pass it already,and know some indentation on python!
Thanitsak Leuangsupornpong
7,490 PointsThanitsak Leuangsupornpong
7,490 PointsReturn,from,or import? Thanks for answer :D