説明なし

forms.py 330B

1234567891011121314
  1. from __future__ import annotations
  2. from django import forms
  3. from .models import Organization
  4. class OrganizationForm(forms.ModelForm):
  5. class Meta:
  6. model = Organization
  7. fields = ["name", "code", "timezone", "currency_code"]
  8. ## ProvidedService moved to recycle_core app; form now lives in recycle_core.forms