SMART-48 create new django app - project

This commit is contained in:
s460930 2020-12-14 20:01:40 +01:00
parent afdd6c70eb
commit 29d60411c1
9 changed files with 19 additions and 1 deletions

View File

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

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class ProjectConfig(AppConfig):
name = 'smartpicasso.app.project'

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.

View File

@ -38,7 +38,8 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'smartpicasso.app.user',
'smartpicasso.app.user_profile'
'smartpicasso.app.user_profile',
'smartpicasso.app.project'
]
MIDDLEWARE = [