Added the accounting application.

This commit is contained in:
依瑪貓 2020-06-29 19:41:52 +08:00
parent 7d29dab314
commit fb95c0e073
7 changed files with 17 additions and 0 deletions

0
accounting/__init__.py Normal file
View File

3
accounting/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
accounting/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class AccountingConfig(AppConfig):
name = 'accounting'

View File

3
accounting/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
accounting/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
accounting/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.