Browse Source

Start app base

pull/6/head
Marcio Mazza 10 years ago
parent
commit
29a37e5213
  1. 0
      base/__init__.py
  2. 3
      base/admin.py
  3. 0
      base/migrations/__init__.py
  4. 3
      base/models.py
  5. 3
      base/tests.py
  6. 3
      base/views.py

0
base/__init__.py

3
base/admin.py

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

0
base/migrations/__init__.py

3
base/models.py

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

3
base/tests.py

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

3
base/views.py

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