fix Project model

This commit is contained in:
behruz-dev
2025-08-04 15:39:11 +05:00
parent bb8fbd4ca7
commit 4550e00618
7 changed files with 85 additions and 8 deletions

View File

@@ -1 +1,2 @@
from .cash_transaction import *
from .cash_transaction import *
from .payment_type import *

View File

@@ -0,0 +1,8 @@
from django.contrib import admin
from core.apps.finance.models.payment_type import PaymentType
@admin.register(PaymentType)
class PaymentTypeAdmin(admin.ModelAdmin):
list_display = ['id', 'name']