-
Notifications
You must be signed in to change notification settings - Fork 0
/
initial_data.json
122 lines (122 loc) · 2.06 KB
/
initial_data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[
{
"pk": 1,
"model": "auth.user",
"fields": {
"username": "Inicjator",
"is_superuser": true,
"is_staff": true,
"password": "w",
"email": ""
}
},
{
"pk": 2,
"model": "auth.user",
"fields": {
"username": "M",
"is_superuser": true,
"is_staff": true,
"password": "w",
"email": ""
}
},
{
"pk": 1,
"model": "scrabble.userprofile",
"fields": {
"user": 1
}
},
{
"pk": 2,
"model": "scrabble.userprofile",
"fields": {
"user": 2
}
},
{
"pk": 1,
"model": "scrabble.language",
"fields": {
"short": "pl",
"name": "polski",
"letters": "aąbcćdeęfghijklłmńoóprsśtuwyzźż"
}
},
{
"pk": 2,
"model": "scrabble.language",
"fields": {
"short": "en",
"name": "english",
"letters": "abcdefghijklmopqrstuvwxyz"
}
},
{
"pk": 1,
"model": "scrabble.word",
"fields": {
"code": "hwy",
"word": "why",
"added_by": [1],
"language": 2,
"points": 6
}
},
{
"pk": 2,
"model": "scrabble.word",
"fields": {
"code": "kośt",
"word": "ktoś",
"added_by": [1],
"language": 1,
"points": 10
}
},
{
"pk": 3,
"model": "scrabble.word",
"fields": {
"code": "eehrw",
"word": "where",
"added_by": [1],
"language": 2,
"points": 7
}
},
{
"pk": 4,
"model": "scrabble.word",
"fields": {
"code": "eehr",
"word": "here",
"added_by": [2],
"language": 2,
"points": 6
}
},
{
"pk": 5,
"model": "scrabble.word",
"fields": {
"code": "ty",
"word": "ty",
"added_by": [2],
"language": 1,
"points": 4
}
},
{
"pk": 6,
"model": "scrabble.word",
"fields": {
"code": "aj",
"word": "ja",
"added_by": [1],
"language": 1,
"points": 4
}
}
]