修改用户管理

This commit is contained in:
2025-03-04 11:41:55 +08:00
parent 6ac81045af
commit 782986aa14
14 changed files with 149 additions and 8 deletions

0
challenge/__init__.py Normal file
View File

3
challenge/admin.py Normal file
View File

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

6
challenge/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class ChallengeConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'challenge'

View File

3
challenge/models.py Normal file
View File

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

3
challenge/views.py Normal file
View File

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