1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/factions/forms.py

9 lines
198 B
Python

from django.forms import ModelForm
from factions.models import Faction
class FactionForm(ModelForm):
class Meta:
model = Faction
fields = ["name", "aliases","description_md"]