fix Project model
This commit is contained in:
@@ -1 +1,2 @@
|
||||
from .cash_transaction import *
|
||||
from .cash_transaction import *
|
||||
from .payment_type import *
|
||||
8
core/apps/finance/admin/payment_type.py
Normal file
8
core/apps/finance/admin/payment_type.py
Normal 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']
|
||||
Reference in New Issue
Block a user