Commit
69e359260d367c8bb195c3659d466ccb909a03ca
0 parents
Initial commit
Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Signed-off-by: Alexandre Barbosa <alexandrealmeidabarbosa@gmail.com>
| |
1
| +++ a/admin.py |
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.contrib import admin |
| |
2
| + |
| |
3
| +# Register your models here. |
| |
1
| +++ a/migrations/__init__.py |
| |
1
| +++ a/models.py |
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.db import models |
| |
2
| + |
| |
3
| +# Create your models here. |
| |
1
| +++ a/tests.py |
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.test import TestCase |
| |
2
| + |
| |
3
| +# Create your tests here. |
| |
1
| +++ a/views.py |
| @@ -0,0 +1,3 @@ |
| @@ -0,0 +1,3 @@ |
| |
1
| +from django.shortcuts import render |
| |
2
| + |
| |
3
| +# Create your views here. |