n
Some checks failed
Deploy to Server / deploy (push) Has been cancelled

This commit is contained in:
jeremygan2021
2026-03-10 10:34:56 +08:00
parent 9916a6f4da
commit 29e18e1288
8 changed files with 18 additions and 0 deletions

View File

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -47,6 +47,7 @@ INSTALLED_APPS = [
# 'adminsortable2', # 暂时禁用,改用手动设置 # 'adminsortable2', # 暂时禁用,改用手动设置
'shop', 'shop',
'community', 'community',
'competition',
] ]
MIDDLEWARE = [ MIDDLEWARE = [