mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 14:23:53 +01:00
9 lines
226 B
Python
9 lines
226 B
Python
from django import forms
|
|
|
|
from character.models import Character
|
|
|
|
|
|
class EquipmentForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Character
|
|
fields = ["equipment", "money_pp", "money_po", "money_pa", "money_pc"]
|