Created app organizer
This commit is contained in:
parent
9ae517bb43
commit
cf9df791ea
0
src/organizer/__init__.py
Normal file
0
src/organizer/__init__.py
Normal file
3
src/organizer/admin.py
Normal file
3
src/organizer/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
src/organizer/apps.py
Normal file
5
src/organizer/apps.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class OrganizerConfig(AppConfig):
|
||||
name = 'organizer'
|
0
src/organizer/migrations/__init__.py
Normal file
0
src/organizer/migrations/__init__.py
Normal file
3
src/organizer/models.py
Normal file
3
src/organizer/models.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
src/organizer/tests.py
Normal file
3
src/organizer/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
src/organizer/views.py
Normal file
3
src/organizer/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
x
Reference in New Issue
Block a user