fixing form handling for relationships

This commit is contained in:
evilchili
2024-02-04 11:40:30 -08:00
parent 32d9c42847
commit 669c9b46d6
13 changed files with 206 additions and 122 deletions
+7
View File
@@ -0,0 +1,7 @@
from wtforms_alchemy import ModelForm
from db.schema import Character
class CharacterForm(ModelForm):
class Meta:
model = Character