Created expcs project through django-admin
This commit is contained in:
commit
d57f792dfd
7 changed files with 17 additions and 0 deletions
0
__init__.py
Normal file
0
__init__.py
Normal file
3
admin.py
Normal file
3
admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
apps.py
Normal file
5
apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ExpcsConfig(AppConfig):
|
||||
name = 'expcs'
|
0
migrations/__init__.py
Normal file
0
migrations/__init__.py
Normal file
3
models.py
Normal file
3
models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
tests.py
Normal file
3
tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
views.py
Normal file
3
views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in a new issue