django-admin.py startapp public

This commit is contained in:
Frédéric Péters 2014-12-07 21:08:12 +01:00
parent 4a00c1aa8b
commit b910c54c66
5 changed files with 12 additions and 0 deletions

0
combo/public/__init__.py Normal file
View File

3
combo/public/admin.py Normal file
View File

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

3
combo/public/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
combo/public/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
combo/public/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.