tabletop-frog/src/ttfrog/webserver/controllers/ancestry.py
2024-03-26 00:53:21 -07:00

14 lines
261 B
Python

from wtforms_alchemy import ModelForm
from ttfrog.db.manager import db
from ttfrog.db.schema import Ancestry
class AncestryForm(ModelForm):
class Meta:
model = Ancestry
exclude = ["slug"]
def get_session():
return db.session