8 lines
218 B
Python
8 lines
218 B
Python
from django.contrib import admin
|
|
|
|
from .models import Transaction, Invoice, Category, Snapshot
|
|
|
|
admin.site.register(Transaction)
|
|
admin.site.register(Invoice)
|
|
admin.site.register(Category)
|
|
admin.site.register(Snapshot)
|