forked from codio-templates/blango
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
138 lines (138 loc) · 3.2 KB
/
data.json
File metadata and controls
138 lines (138 loc) · 3.2 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
[
{
"model": "blog.comment",
"pk": 2,
"fields": {
"creator": 1,
"content": "I like myself!",
"content_type": 4,
"object_id": 1,
"created_at": "2023-09-12T21:59:29.757Z",
"modified_at": "2023-09-12T21:59:29.774Z"
}
},
{
"model": "blog.comment",
"pk": 3,
"fields": {
"creator": 1,
"content": "test comment",
"content_type": 8,
"object_id": 1,
"created_at": "2023-09-19T16:01:04.921Z",
"modified_at": "2023-09-19T16:01:04.921Z"
}
},
{
"model": "blog.comment",
"pk": 4,
"fields": {
"creator": 1,
"content": "test comment TWO!",
"content_type": 8,
"object_id": 1,
"created_at": "2023-09-19T16:01:16.322Z",
"modified_at": "2023-09-19T16:01:16.322Z"
}
},
{
"model": "blog.tag",
"pk": 1,
"fields": {
"value": "TestTag1"
}
},
{
"model": "blog.tag",
"pk": 2,
"fields": {
"value": "django"
}
},
{
"model": "blog.tag",
"pk": 3,
"fields": {
"value": "test"
}
},
{
"model": "blog.tag",
"pk": 4,
"fields": {
"value": "testTag2"
}
},
{
"model": "blog.post",
"pk": 1,
"fields": {
"author": 1,
"created_at": "2023-09-05T23:58:53.538Z",
"modified_at": "2023-09-05T23:58:53.538Z",
"published_at": "2023-09-05T23:53:48Z",
"title": "Test Post",
"slug": "test-post",
"summary": "Simple test post",
"content": "<h3>test test test text Header 3!</h3>\r\n<p>This is an example post, that uses HTML to render itself.</p>",
"tags": [
1,
2,
3
]
}
},
{
"model": "blog.post",
"pk": 2,
"fields": {
"author": 2,
"created_at": "2023-09-13T23:05:08.493Z",
"modified_at": "2023-09-13T23:05:08.493Z",
"published_at": "2023-09-13T23:04:18Z",
"title": "Test Post TWO",
"slug": "test-post-two",
"summary": "This is another test post",
"content": "This is another test postThis is another test postThis is another test postThis is another test postThis is another test post",
"tags": [
4
]
}
},
{
"model": "blango_auth.User",
"pk": 1,
"fields": {
"password": "argon2$argon2id$v=19$m=102400,t=2,p=8$a25lM3pMV1g2am9IakdOeWlnNFo1VA$rFpWH51bhCb6XEWgamiQ7zer/bXLjr0eT2vaXBJyZm0",
"last_login": "2023-09-23T23:26:44.897Z",
"is_superuser": true,
"username": "Cola4610",
"first_name": "",
"last_name": "",
"email": "stephen.mosby@gmail.com",
"is_staff": true,
"is_active": true,
"date_joined": "2023-09-05T21:36:28.883Z",
"groups": [],
"user_permissions": []
}
},
{
"model": "blango_auth.User",
"pk": 2,
"fields": {
"password": "pbkdf2_sha256$260000$T57C1O0BcbnlqeShXaZ02U$auBRP1EDeb5CBnwjiQNOA9HZnRr18lIugd7Smcq4i/E=",
"last_login": null,
"is_superuser": false,
"username": "testUser",
"first_name": "Test",
"last_name": "User",
"email": "testuser@test.com",
"is_staff": false,
"is_active": true,
"date_joined": "2023-09-13T23:02:55Z",
"groups": [],
"user_permissions": []
}
}
]