From be2d669fde6201370e4a0cf0de7aeb162ac8096d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 12 May 2016 10:36:04 +0200 Subject: [PATCH] django-admin startapp thesaurus --- pfwb_thesaurus/thesaurus/__init__.py | 0 pfwb_thesaurus/thesaurus/admin.py | 3 +++ pfwb_thesaurus/thesaurus/migrations/__init__.py | 0 pfwb_thesaurus/thesaurus/models.py | 3 +++ pfwb_thesaurus/thesaurus/tests.py | 3 +++ pfwb_thesaurus/thesaurus/views.py | 3 +++ 6 files changed, 12 insertions(+) create mode 100644 pfwb_thesaurus/thesaurus/__init__.py create mode 100644 pfwb_thesaurus/thesaurus/admin.py create mode 100644 pfwb_thesaurus/thesaurus/migrations/__init__.py create mode 100644 pfwb_thesaurus/thesaurus/models.py create mode 100644 pfwb_thesaurus/thesaurus/tests.py create mode 100644 pfwb_thesaurus/thesaurus/views.py diff --git a/pfwb_thesaurus/thesaurus/__init__.py b/pfwb_thesaurus/thesaurus/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pfwb_thesaurus/thesaurus/admin.py b/pfwb_thesaurus/thesaurus/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/pfwb_thesaurus/thesaurus/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/pfwb_thesaurus/thesaurus/migrations/__init__.py b/pfwb_thesaurus/thesaurus/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pfwb_thesaurus/thesaurus/models.py b/pfwb_thesaurus/thesaurus/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/pfwb_thesaurus/thesaurus/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/pfwb_thesaurus/thesaurus/tests.py b/pfwb_thesaurus/thesaurus/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/pfwb_thesaurus/thesaurus/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/pfwb_thesaurus/thesaurus/views.py b/pfwb_thesaurus/thesaurus/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/pfwb_thesaurus/thesaurus/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.