payment modeli yaratildi

This commit is contained in:
Husanjonazamov
2026-02-18 18:06:42 +05:00
parent d4d8c18a2a
commit a6d7fa8c9a
34 changed files with 417 additions and 2 deletions

View File

@@ -0,0 +1 @@
from .payment import * # noqa

View File

@@ -0,0 +1,10 @@
from django import forms
from core.apps.payment.models import PaymentModel
class PaymentForm(forms.ModelForm):
class Meta:
model = PaymentModel
fields = "__all__"