Initial project and app commit

This commit is contained in:
Lexi / Zoe 2019-03-20 22:14:36 +01:00
parent 77b7aaf1e3
commit 6c43c8b360
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
12 changed files with 189 additions and 0 deletions

0
issues/__init__.py Normal file
View file

3
issues/admin.py Normal file
View file

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

5
issues/apps.py Normal file
View file

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

View file

3
issues/models.py Normal file
View file

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

3
issues/tests.py Normal file
View file

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

3
issues/views.py Normal file
View file

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