add softwares app

This commit is contained in:
Andreas Zweili 2020-01-11 17:54:31 +01:00
parent 6bec0be4e4
commit 6544b58ef3
7 changed files with 25 additions and 0 deletions

0
softwares/__init__.py Normal file
View File

3
softwares/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
softwares/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class SoftwaresConfig(AppConfig):
name = 'softwares'

3
softwares/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
softwares/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

8
softwares/urls.py Normal file
View File

@ -0,0 +1,8 @@
from django.urls import path, include
from . import views
urlpatterns = [
path('customer/<int:pk>/licenses/', views.licenses_table_view,
name='licenses'),
]

3
softwares/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.