mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
startapp common
This commit is contained in:
parent
9f87963fa9
commit
aeb25e4c34
0
InvenTree/common/__init__.py
Normal file
0
InvenTree/common/__init__.py
Normal file
3
InvenTree/common/admin.py
Normal file
3
InvenTree/common/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
InvenTree/common/apps.py
Normal file
5
InvenTree/common/apps.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CommonConfig(AppConfig):
|
||||
name = 'common'
|
0
InvenTree/common/migrations/__init__.py
Normal file
0
InvenTree/common/migrations/__init__.py
Normal file
3
InvenTree/common/models.py
Normal file
3
InvenTree/common/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
InvenTree/common/tests.py
Normal file
3
InvenTree/common/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
InvenTree/common/views.py
Normal file
3
InvenTree/common/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