Initial project and app commit
This commit is contained in:
parent
77b7aaf1e3
commit
6c43c8b360
12 changed files with 189 additions and 0 deletions
0
issues/__init__.py
Normal file
0
issues/__init__.py
Normal file
3
issues/admin.py
Normal file
3
issues/admin.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
5
issues/apps.py
Normal file
5
issues/apps.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class IssuesConfig(AppConfig):
|
||||
name = 'issues'
|
||||
0
issues/migrations/__init__.py
Normal file
0
issues/migrations/__init__.py
Normal file
3
issues/models.py
Normal file
3
issues/models.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
issues/tests.py
Normal file
3
issues/tests.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
issues/views.py
Normal file
3
issues/views.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Reference in a new issue