tabletop-frog/ttfrog/webserver/controllers/ancestry.py

13 lines
260 B
Python
Raw Normal View History

2024-02-04 11:40:30 -08:00
from ttfrog.db.schema import Ancestry
from ttfrog.db.manager import db
from wtforms_alchemy import ModelForm
class AncestryForm(ModelForm):
class Meta:
model = Ancestry
exclude = ['slug']
def get_session():
return db.session