django-admin startapp thesaurus

This commit is contained in:
Frédéric Péters 2016-05-12 10:36:04 +02:00
parent 79377a5514
commit be2d669fde
6 changed files with 12 additions and 0 deletions

View File

View File

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

View File

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

View File

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

View File

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