1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/loot/forms.py
2022-11-19 17:40:46 +01:00

10 lines
302 B
Python

from django.forms import ModelForm
from loot.models import Loot
class LootForm(ModelForm):
class Meta:
model = Loot
fields = ["name", "type", "aliases", "description_md", "quantity", "value_gold", "weight", "image",
"owner", "location", "magic_item", "former"]