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

10 lines
222 B
Python
Raw Normal View History

2021-09-15 16:51:43 +02:00
from django.forms import ModelForm
from locations.models import Location
class LocationForm(ModelForm):
class Meta:
model = Location
2022-07-05 18:37:21 +02:00
fields = ["name", "aliases", "description_md", "parent", "image"]