mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2025-04-27 10:11:24 +08:00
Added transactions and updated models to reflect transactions
This commit is contained in:
parent
d915852632
commit
2c8cc87cbe
39 changed files with 635 additions and 291 deletions
0
equipment_tracker/breakages/__init__.py
Normal file
0
equipment_tracker/breakages/__init__.py
Normal file
3
equipment_tracker/breakages/admin.py
Normal file
3
equipment_tracker/breakages/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
equipment_tracker/breakages/apps.py
Normal file
6
equipment_tracker/breakages/apps.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class BreakagesConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'breakages'
|
0
equipment_tracker/breakages/migrations/__init__.py
Normal file
0
equipment_tracker/breakages/migrations/__init__.py
Normal file
3
equipment_tracker/breakages/models.py
Normal file
3
equipment_tracker/breakages/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
equipment_tracker/breakages/tests.py
Normal file
3
equipment_tracker/breakages/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
equipment_tracker/breakages/views.py
Normal file
3
equipment_tracker/breakages/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Add table
Add a link
Reference in a new issue