]> git.parisson.com Git - deegger.git/commitdiff
init master
authorGuillaume Pellerin <yomguy@parisson.com>
Mon, 15 Jun 2015 09:44:15 +0000 (11:44 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Mon, 15 Jun 2015 09:44:15 +0000 (11:44 +0200)
__init__.py [new file with mode: 0644]
admin.py [new file with mode: 0644]
migrations/__init__.py [new file with mode: 0644]
models.py [new file with mode: 0644]
tests.py [new file with mode: 0644]
views.py [new file with mode: 0644]

diff --git a/__init__.py b/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/admin.py b/admin.py
new file mode 100644 (file)
index 0000000..8c38f3f
--- /dev/null
+++ b/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/migrations/__init__.py b/migrations/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/models.py b/models.py
new file mode 100644 (file)
index 0000000..508029f
--- /dev/null
+++ b/models.py
@@ -0,0 +1,5 @@
+from django.db import models
+
+# Create your models here.
+
+
diff --git a/tests.py b/tests.py
new file mode 100644 (file)
index 0000000..7ce503c
--- /dev/null
+++ b/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/views.py b/views.py
new file mode 100644 (file)
index 0000000..91ea44a
--- /dev/null
+++ b/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.