fix: fix url bug

This commit is contained in:
behruz-dev
2025-09-08 18:22:25 +05:00
parent 0d5fcf6ee7
commit 998880fd46
6 changed files with 93 additions and 3 deletions

View File

@@ -3,4 +3,4 @@ from .payment_type import *
from .type_income import *
from .income import *
from .expence_type import *
from .expence import *

View File

@@ -0,0 +1,9 @@
from django.contrib import admin
from core.apps.finance.models import Expence
@admin.register(Expence)
class ExpenceAdmin(admin.ModelAdmin):
list_display = ['id', 'price', 'cash_transaction']