Skip to content

Commit 02b2d74

Browse files
kwanahitaMuyanXie
andauthored
formatting issue resolved (#1392)
Co-authored-by: Sam Xie <[email protected]>
1 parent 2a1b505 commit 02b2d74

File tree

3 files changed

+546
-265
lines changed

3 files changed

+546
-265
lines changed
Lines changed: 223 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,223 @@
1+
[
2+
{
3+
"model": "games.tournament",
4+
"pk": 1026,
5+
"fields": {
6+
"name": "Ikusa Cup 26",
7+
"game": 1,
8+
"registration_start_date": "2025-05-01T00:00:00Z",
9+
"registration_end_date": "2025-05-20T23:59:59Z",
10+
"tournament_start_date": "2025-05-22T10:00:00Z",
11+
"tournament_end_date": "2025-06-30T23:59:59Z",
12+
"max_players": 8,
13+
"description": "Auto-generated simulation tournament with seeded users.",
14+
"rules": "Standard Ikusa rules apply.",
15+
"draw_rules": "Higher seed advances in the event of a draw.",
16+
"num_winner": 1,
17+
"archived": false,
18+
"created_by": 1000,
19+
"players": [1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007],
20+
"winners": [],
21+
"matches": [2021, 2022, 2023, 2024]
22+
}
23+
},
24+
{
25+
"model": "games.chat",
26+
"pk": 1026,
27+
"fields": {
28+
"tournament": 1026
29+
}
30+
},
31+
{
32+
"model": "games.lobby",
33+
"pk": 2021,
34+
"fields": {
35+
"name": "Match 1 - Quarter Finals",
36+
"game": 1,
37+
"match_status": 1,
38+
"game_mod_status": 1,
39+
"created_by": 1000,
40+
"min_players": 2,
41+
"max_players": 2,
42+
"time_constraint": 300,
43+
"lobby_created": "2025-05-22T10:30:00Z"
44+
}
45+
},
46+
{
47+
"model": "games.lobby",
48+
"pk": 2022,
49+
"fields": {
50+
"name": "Match 2 - Quarter Finals",
51+
"game": 1,
52+
"match_status": 1,
53+
"game_mod_status": 1,
54+
"created_by": 1000,
55+
"min_players": 2,
56+
"max_players": 2,
57+
"time_constraint": 300,
58+
"lobby_created": "2025-05-22T11:30:00Z"
59+
}
60+
},
61+
{
62+
"model": "games.lobby",
63+
"pk": 2023,
64+
"fields": {
65+
"name": "Match 3 - Quarter Finals",
66+
"game": 1,
67+
"match_status": 1,
68+
"game_mod_status": 1,
69+
"created_by": 1000,
70+
"min_players": 2,
71+
"max_players": 2,
72+
"time_constraint": 300,
73+
"lobby_created": "2025-05-22T13:30:00Z"
74+
}
75+
},
76+
{
77+
"model": "games.lobby",
78+
"pk": 2024,
79+
"fields": {
80+
"name": "Match 4 - Quarter Finals",
81+
"game": 1,
82+
"match_status": 1,
83+
"game_mod_status": 1,
84+
"created_by": 1000,
85+
"min_players": 2,
86+
"max_players": 2,
87+
"time_constraint": 300,
88+
"lobby_created": "2025-05-22T14:30:00Z"
89+
}
90+
},
91+
{
92+
"model": "games.match",
93+
"pk": 2021,
94+
"fields": {
95+
"game": 1,
96+
"lobby": 2021,
97+
"date_played": "2025-05-22T10:30:00Z"
98+
}
99+
},
100+
{
101+
"model": "games.match",
102+
"pk": 2022,
103+
"fields": {
104+
"game": 1,
105+
"lobby": 2022,
106+
"date_played": "2025-05-22T11:30:00Z"
107+
}
108+
},
109+
{
110+
"model": "games.match",
111+
"pk": 2023,
112+
"fields": {
113+
"game": 1,
114+
"lobby": 2023,
115+
"date_played": "2025-05-22T13:30:00Z"
116+
}
117+
},
118+
{
119+
"model": "games.match",
120+
"pk": 2024,
121+
"fields": {
122+
"game": 1,
123+
"lobby": 2024,
124+
"date_played": "2025-05-22T14:30:00Z"
125+
}
126+
},
127+
{
128+
"model": "games.player",
129+
"pk": 2021,
130+
"fields": {
131+
"user": 1000,
132+
"match": 2021,
133+
"team": "Team A",
134+
"role": "Player 1",
135+
"outcome": null,
136+
"victory_type": null
137+
}
138+
},
139+
{
140+
"model": "games.player",
141+
"pk": 2022,
142+
"fields": {
143+
"user": 1001,
144+
"match": 2021,
145+
"team": "Team B",
146+
"role": "Player 2",
147+
"outcome": null,
148+
"victory_type": null
149+
}
150+
},
151+
{
152+
"model": "games.player",
153+
"pk": 2023,
154+
"fields": {
155+
"user": 1002,
156+
"match": 2022,
157+
"team": "Team A",
158+
"role": "Player 1",
159+
"outcome": null,
160+
"victory_type": null
161+
}
162+
},
163+
{
164+
"model": "games.player",
165+
"pk": 2024,
166+
"fields": {
167+
"user": 1003,
168+
"match": 2022,
169+
"team": "Team B",
170+
"role": "Player 2",
171+
"outcome": null,
172+
"victory_type": null
173+
}
174+
},
175+
{
176+
"model": "games.player",
177+
"pk": 2025,
178+
"fields": {
179+
"user": 1004,
180+
"match": 2023,
181+
"team": "Team A",
182+
"role": "Player 1",
183+
"outcome": null,
184+
"victory_type": null
185+
}
186+
},
187+
{
188+
"model": "games.player",
189+
"pk": 2026,
190+
"fields": {
191+
"user": 1005,
192+
"match": 2023,
193+
"team": "Team B",
194+
"role": "Player 2",
195+
"outcome": null,
196+
"victory_type": null
197+
}
198+
},
199+
{
200+
"model": "games.player",
201+
"pk": 2027,
202+
"fields": {
203+
"user": 1006,
204+
"match": 2024,
205+
"team": "Team A",
206+
"role": "Player 1",
207+
"outcome": null,
208+
"victory_type": null
209+
}
210+
},
211+
{
212+
"model": "games.player",
213+
"pk": 2028,
214+
"fields": {
215+
"user": 1007,
216+
"match": 2024,
217+
"team": "Team B",
218+
"role": "Player 2",
219+
"outcome": null,
220+
"victory_type": null
221+
}
222+
}
223+
]

0 commit comments

Comments
 (0)