diff --git a/compilacao/__init__.py b/compilacao/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/compilacao/forms.py b/compilacao/forms.py new file mode 100644 index 000000000..c4f2ecbbc --- /dev/null +++ b/compilacao/forms.py @@ -0,0 +1,4 @@ +from django import forms + + +# place form definition here \ No newline at end of file diff --git a/compilacao/migrations/__init__.py b/compilacao/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/compilacao/models.py b/compilacao/models.py new file mode 100644 index 000000000..c389f5d7a --- /dev/null +++ b/compilacao/models.py @@ -0,0 +1,4 @@ +from django.db import models + + +# Create your models here. diff --git a/compilacao/urls.py b/compilacao/urls.py new file mode 100644 index 000000000..96ef53f2c --- /dev/null +++ b/compilacao/urls.py @@ -0,0 +1,6 @@ +try: + from django.conf.urls import * +except ImportError: # django < 1.4 + from django.conf.urls.defaults import * + +# place app url patterns here diff --git a/compilacao/views.py b/compilacao/views.py new file mode 100644 index 000000000..60f00ef0e --- /dev/null +++ b/compilacao/views.py @@ -0,0 +1 @@ +# Create your views here.