Files
tabletop-frog/src/ttfrog/webserver/controllers/ancestry.py
T

14 lines
261 B
Python
Raw Normal View History

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