初始化mmonth

This commit is contained in:
2026-06-30 16:10:34 +08:00
commit e491e33719
31 changed files with 4877 additions and 0 deletions

0
user/__init__.py Normal file
View File

3
user/admin.py Normal file
View File

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

6
user/apps.py Normal file
View File

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

View File

3
user/models.py Normal file
View File

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

3
user/tests.py Normal file
View File

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

3
user/urls.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
from django.urls import path
urlpatterns = []

3
user/views.py Normal file
View File

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