Added the accounting application.
This commit is contained in:
parent
7d29dab314
commit
fb95c0e073
0
accounting/__init__.py
Normal file
0
accounting/__init__.py
Normal file
3
accounting/admin.py
Normal file
3
accounting/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
5
accounting/apps.py
Normal file
5
accounting/apps.py
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class AccountingConfig(AppConfig):
|
||||||
|
name = 'accounting'
|
0
accounting/migrations/__init__.py
Normal file
0
accounting/migrations/__init__.py
Normal file
3
accounting/models.py
Normal file
3
accounting/models.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
3
accounting/tests.py
Normal file
3
accounting/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
3
accounting/views.py
Normal file
3
accounting/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
Loading…
Reference in New Issue
Block a user