startapp common

This commit is contained in:
Oliver Walters 2019-09-03 08:30:14 +10:00
parent 9f87963fa9
commit aeb25e4c34
7 changed files with 17 additions and 0 deletions

View File

View File

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

5
InvenTree/common/apps.py Normal file
View File

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

View File

View File

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

View File

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

View File

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