add device app

This commit is contained in:
Andreas Zweili 2020-01-09 18:01:14 +01:00
parent ff307b7ae3
commit 8962622571
7 changed files with 17 additions and 0 deletions

0
device/__init__.py Normal file
View File

3
device/admin.py Normal file
View File

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

5
device/apps.py Normal file
View File

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

View File

3
device/models.py Normal file
View File

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

3
device/tests.py Normal file
View File

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

3
device/views.py Normal file
View File

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