Я новичок в Python, я хотел создать простую страницу с Wtforms, но этот код дает мне ошибку UnboundField.
Может кто-нибудь помочь мне решить проблему?
Спасибо
from flask_wtf import Form
from wtforms import StringField
from wtforms import TextField
from wtforms import SelectField
from wtforms import RadioField
from wtforms import DecimalField
from wtforms import SubmitField
from datetime import datetime
from flask import render_template
from FlaskWebProject1 import app
class StudyManagementForm(Form):
"""This seemingly static class will be transformed
by the WTForms metaclass constructor"""
study = TextField("Study")
active = RadioField("Etude active")
submit = SubmitField("Ok")
def __init__(self):
print ('a')
@app.route('/')
@app.route('/study_management', methods=['GET', 'POST'])
def study_management():
submitForm = StudyManagementForm()
return render_template(
'study_management.html',
form = submitForm
)
И я получил ошибку UnboundField:
<UnboundField(TextField, ('Study',), {})>
<UnboundField(RadioField, ('Etude active',), {})>