diff --git a/softwares/__init__.py b/softwares/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/softwares/admin.py b/softwares/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/softwares/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/softwares/apps.py b/softwares/apps.py new file mode 100644 index 0000000..f47d175 --- /dev/null +++ b/softwares/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class SoftwaresConfig(AppConfig): + name = 'softwares' diff --git a/softwares/models.py b/softwares/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/softwares/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/softwares/tests.py b/softwares/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/softwares/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/softwares/urls.py b/softwares/urls.py new file mode 100644 index 0000000..7b55302 --- /dev/null +++ b/softwares/urls.py @@ -0,0 +1,8 @@ +from django.urls import path, include + +from . import views + +urlpatterns = [ + path('customer//licenses/', views.licenses_table_view, + name='licenses'), + ] diff --git a/softwares/views.py b/softwares/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/softwares/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.