| 1234567891011121314 |
- from __future__ import annotations
- from django import forms
- from .models import Organization
- class OrganizationForm(forms.ModelForm):
- class Meta:
- model = Organization
- fields = ["name", "code", "timezone", "currency_code"]
- ## ProvidedService moved to recycle_core app; form now lives in recycle_core.forms
|