kenken999 commited on
Commit
a8de97b
1 Parent(s): 27b5eff
workspace/project001/workspace/project001/estimate_app/__init__.py ADDED
File without changes
workspace/project001/workspace/project001/estimate_app/admin.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.contrib import admin
2
+
3
+ # Register your models here.
workspace/project001/workspace/project001/estimate_app/apps.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class EstimateAppConfig(AppConfig):
5
+ default_auto_field = 'django.db.models.BigAutoField'
6
+ name = 'estimate_app'
workspace/project001/workspace/project001/estimate_app/migrations/__init__.py ADDED
File without changes
workspace/project001/workspace/project001/estimate_app/models.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.db import models
2
+
3
+ # Create your models here.
workspace/project001/workspace/project001/estimate_app/tests.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.test import TestCase
2
+
3
+ # Create your tests here.
workspace/project001/workspace/project001/estimate_app/views.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.shortcuts import render
2
+
3
+ # Create your views here.