Skip to content

Instantly share code, notes, and snippets.

View cd-eha's full-sized avatar
🎯
Focusing

Hantsaniala Eléo cd-eha

🎯
Focusing
View GitHub Profile
@rmed
rmed / app.py
Last active July 4, 2024 14:05
Dynamic Flask-WTF fields
# -*- coding: utf-8 -*-
# app.py
from flask import Flask, render_template
from flask_sqlalchemy import SQLAlchemy
from flask_wtf import FlaskForm
from wtforms import Form, FieldList, FormField, IntegerField, SelectField, \
StringField, TextAreaField, SubmitField
from wtforms import validators