mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
Created License app
This commit is contained in:
parent
4b97d321bc
commit
d5bf12cf29
0
FOSSDB_web/apps/license/__init__.py
Normal file
0
FOSSDB_web/apps/license/__init__.py
Normal file
3
FOSSDB_web/apps/license/admin.py
Normal file
3
FOSSDB_web/apps/license/admin.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
||||||
6
FOSSDB_web/apps/license/apps.py
Normal file
6
FOSSDB_web/apps/license/apps.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class LicenseConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.BigAutoField'
|
||||||
|
name = 'license'
|
||||||
0
FOSSDB_web/apps/license/migrations/__init__.py
Normal file
0
FOSSDB_web/apps/license/migrations/__init__.py
Normal file
3
FOSSDB_web/apps/license/models.py
Normal file
3
FOSSDB_web/apps/license/models.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.db import models
|
||||||
|
|
||||||
|
# Create your models here.
|
||||||
3
FOSSDB_web/apps/license/tests.py
Normal file
3
FOSSDB_web/apps/license/tests.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
||||||
3
FOSSDB_web/apps/license/views.py
Normal file
3
FOSSDB_web/apps/license/views.py
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
from django.shortcuts import render
|
||||||
|
|
||||||
|
# Create your views here.
|
||||||
Loading…
Reference in New Issue
Block a user