django-admin.py startapp data

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

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

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

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

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

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

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

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

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

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