add tracker app

This commit is contained in:
Fred Pauchet 2015-07-23 22:17:57 +02:00
parent a17d2a74cf
commit 56b74af9b9
6 changed files with 12 additions and 0 deletions

0
tracker/__init__.py Normal file
View File

3
tracker/admin.py Normal file
View File

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

View File

3
tracker/models.py Normal file
View File

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

3
tracker/tests.py Normal file
View File

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

3
tracker/views.py Normal file
View File

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