develop #8

Merged
s460930 merged 7 commits from develop into master 2020-12-17 17:03:01 +01:00
9 changed files with 19 additions and 1 deletions
Showing only changes of commit 29d60411c1 - Show all commits

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 = [