| 1234567891011121314 |
- from django import forms
- from django.contrib.auth.models import User
- from django.core.exceptions import ValidationError
- from expenses.models import Category
- class CategoryForm(forms.ModelForm):
- class Meta:
- model = Category
- fields = "__all__"
- def __init__(self, *args, **kwargs):
- super().__init__(*args, **kwargs)
|