django-admin.py startapp manager

This commit is contained in:
Frédéric Péters 2014-12-07 15:35:07 +01:00
parent b1f02408c0
commit c945106893
5 changed files with 12 additions and 0 deletions

View File

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

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

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

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

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

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

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

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