Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
89d33c3
Create initial files for summary 2025
Morgen-Kornblume Jan 28, 2026
be248d1
Create summary2025.py
Morgen-Kornblume Jan 29, 2026
e66b535
完成了个人数据部分的导出
Morgen-Kornblume Jan 30, 2026
f8c9f14
初步完成了数据导出部分
Morgen-Kornblume Jan 31, 2026
23498d6
完成了数据导出脚本和数据样例的创建
Morgen-Kornblume Jan 31, 2026
55ac1ab
添加了对每个用户姓名的导出
Morgen-Kornblume Feb 4, 2026
c2ea2d0
修正了模板文件
Morgen-Kornblume Feb 4, 2026
640ce8e
2025develop (#3)
yyxuanyao Feb 4, 2026
7a35a7e
修正了个人共同预约数据导出的问题
Morgen-Kornblume Feb 6, 2026
f664186
前端初版 (#5)
firework2024 Feb 7, 2026
756c251
新版前端提交 (#6)
firework2024 Feb 9, 2026
5f036fe
修正了了一个变量名缺失
Morgen-Kornblume Feb 9, 2026
fdc0be2
修正冲突 (#7)
firework2024 Feb 9, 2026
c817fb8
翻页bug修复 (#9)
firework2024 Feb 10, 2026
0c940eb
音乐加入 (#10)
firework2024 Feb 11, 2026
063ab0a
移除了不需要的文件
Morgen-Kornblume Feb 11, 2026
dc04419
登录页和访客逻辑添加 (#11)
firework2024 Feb 12, 2026
3abe1c2
修正一些排版问题 (#12)
firework2024 Feb 13, 2026
f1e1cf1
修复排版问题及后端字段错误 (#13)
firework2024 Feb 14, 2026
03113cd
patch:调整数据读取路径
Morgen-Kornblume Feb 14, 2026
8b445a2
patch: 移除了容器文件中不规范的部分
Morgen-Kornblume Feb 14, 2026
0786ff0
patch:再次移除不规范的部分
Morgen-Kornblume Feb 14, 2026
9b90e93
Merge branch 'develop' into summary2025
Deophius Feb 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
"remoteUser": "vscode",
// Dev container is used for development, so the YPPF_DEBUG environment variable should be set
"containerEnv": {
"YPPF_DEBUG": "true"
},
"YPPF_DEBUG": "true",
"NO_PROXY": "localhost,127.0.0.1,.local"
},
"customizations": {
"vscode": {
"settings": {
Expand Down
19 changes: 3 additions & 16 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,12 @@ services:
volumes:
- yppf-mysql-data:/var/lib/mysql
- yppf-mysql-config:/etc/mysql
command:
[
"mysqld",
"--character-set-server=utf8mb4",
"--collation-server=utf8mb4_bin"
]
command: [ "mysqld", "--character-set-server=utf8mb4", "--collation-server=utf8mb4_bin" ]
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: yppf
healthcheck:
test:
[
"CMD",
"mysqladmin",
"ping",
"-h",
"localhost",
"-uroot",
"-psecret"
]
test: [ "CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-psecret" ]
interval: 5s
timeout: 5s
retries: 100
Expand All @@ -38,6 +24,7 @@ services:
condition: service_healthy
working_dir: /workspace
environment:
- YPPF_DEBUG=true
- DB_HOST=mysql
- DB_USER=root
- DB_PASSWORD=secret
Expand Down
4 changes: 4 additions & 0 deletions 2025 test
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
new 2025



468 changes: 420 additions & 48 deletions Appointment/summary.py

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion Appointment/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,7 @@
path('summary', summary.summary, name='summary'),
path('summary/2021', summary.summary2021, name='summary2021'),
path('summary/2023', summary.summary2023, name='summary2023'),
path('summary/2024', summary.summary2024, name='summary2024')
path('summary/2024', summary.summary2024, name='summary2024'),
path('summary/2025/login', summary.summary2025_login, name='summary2025_login'),
path('summary/2025', summary.summary2025, name='summary2025')
]
Loading