Add FuelPurchase model, List, Create views and templates

This commit is contained in:
Nyymix 2025-08-09 20:23:30 +03:00
parent 64576a7f09
commit fa19b593d8
10 changed files with 242 additions and 4 deletions

View file

@ -1,3 +1,5 @@
from django.contrib import admin
# Register your models here.
from .models import FuelPurchase
admin.site.register(FuelPurchase)