создал приложения:
users, home, timetable и films
This commit is contained in:
parent
199cd166a9
commit
42cf108292
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/Документы/База.drawio
|
||||||
|
/Документы/ТЗ.docx
|
||||||
0
CineSync/films/__init__.py
Normal file
0
CineSync/films/__init__.py
Normal file
3
CineSync/films/admin.py
Normal file
3
CineSync/films/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
6
CineSync/films/apps.py
Normal file
6
CineSync/films/apps.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class FilmsConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'films'
|
||||||
0
CineSync/films/migrations/__init__.py
Normal file
0
CineSync/films/migrations/__init__.py
Normal file
3
CineSync/films/models.py
Normal file
3
CineSync/films/models.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
3
CineSync/films/tests.py
Normal file
3
CineSync/films/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
3
CineSync/films/views.py
Normal file
3
CineSync/films/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
||||||
0
CineSync/home/__init__.py
Normal file
0
CineSync/home/__init__.py
Normal file
3
CineSync/home/admin.py
Normal file
3
CineSync/home/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
6
CineSync/home/apps.py
Normal file
6
CineSync/home/apps.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class HomeConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'home'
|
||||||
0
CineSync/home/migrations/__init__.py
Normal file
0
CineSync/home/migrations/__init__.py
Normal file
3
CineSync/home/models.py
Normal file
3
CineSync/home/models.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
3
CineSync/home/tests.py
Normal file
3
CineSync/home/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
3
CineSync/home/views.py
Normal file
3
CineSync/home/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
||||||
0
CineSync/timetable/__init__.py
Normal file
0
CineSync/timetable/__init__.py
Normal file
3
CineSync/timetable/admin.py
Normal file
3
CineSync/timetable/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
6
CineSync/timetable/apps.py
Normal file
6
CineSync/timetable/apps.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class TimetableConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'timetable'
|
||||||
0
CineSync/timetable/migrations/__init__.py
Normal file
0
CineSync/timetable/migrations/__init__.py
Normal file
3
CineSync/timetable/models.py
Normal file
3
CineSync/timetable/models.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
3
CineSync/timetable/tests.py
Normal file
3
CineSync/timetable/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
3
CineSync/timetable/views.py
Normal file
3
CineSync/timetable/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
||||||
0
CineSync/users/__init__.py
Normal file
0
CineSync/users/__init__.py
Normal file
3
CineSync/users/admin.py
Normal file
3
CineSync/users/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
6
CineSync/users/apps.py
Normal file
6
CineSync/users/apps.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class UsersConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'users'
|
||||||
0
CineSync/users/migrations/__init__.py
Normal file
0
CineSync/users/migrations/__init__.py
Normal file
3
CineSync/users/models.py
Normal file
3
CineSync/users/models.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
3
CineSync/users/tests.py
Normal file
3
CineSync/users/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
3
CineSync/users/views.py
Normal file
3
CineSync/users/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
||||||
BIN
Документы/База.drawio.png
Normal file
BIN
Документы/База.drawio.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 149 KiB |
Loading…
x
Reference in New Issue
Block a user