This commit is contained in:
2019-03-10 13:05:48 -04:00
parent c087f404a1
commit e4b512b38a
20 changed files with 701 additions and 0 deletions
View File
+3
View File
@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.
+5
View File
@@ -0,0 +1,5 @@
from django.apps import AppConfig
class CoreConfig(AppConfig):
name = 'core'
View File
+4
View File
@@ -0,0 +1,4 @@
from django.db import models
from taggit.managers import TaggableManager
# Create your models here.
+3
View File
@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.
+3
View File
@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.