-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.json
More file actions
249 lines (249 loc) · 6.08 KB
/
Copy pathtest.json
File metadata and controls
249 lines (249 loc) · 6.08 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
[
{
"day": 1,
"title": "Module 1: Introduction to Django",
"topics": ["Django overview", "Setting up Django"],
"resources": [
{
"type": "video",
"title": "Introduction to Django",
"estimated_time": "45 mins"
},
{
"type": "article",
"title": "Django Official Tutorial",
"estimated_time": "30 mins"
},
{
"type": "video",
"title": "Setting up Django Environment",
"estimated_time": "20 mins"
}
],
"learning_objectives": [
"Understand Django basics",
"Set up a Django environment"
]
},
{
"day": 2,
"title": "Module 2: Django Project Structure",
"topics": ["Project structure", "Apps and directories"],
"resources": [
{
"type": "article",
"title": "Django Project Structure",
"estimated_time": "20 mins"
},
{
"type": "video",
"title": "Understanding Django Apps",
"estimated_time": "30 mins"
},
{
"type": "article",
"title": "Django Directory Structure",
"estimated_time": "15 mins"
}
],
"learning_objectives": [
"Understand Django project structure",
"Create a new Django app"
]
},
{
"day": 3,
"title": "Module 3: Django Models",
"topics": ["Models definition", "Model fields and relationships"],
"resources": [
{
"type": "video",
"title": "Django Models",
"estimated_time": "40 mins"
},
{
"type": "article",
"title": "Defining Models in Django",
"estimated_time": "25 mins"
},
{
"type": "article",
"title": "Model Relationships in Django",
"estimated_time": "20 mins"
}
],
"learning_objectives": [
"Define Django models",
"Understand model relationships"
]
},
{
"day": 4,
"title": "Module 4: Django Views",
"topics": ["View functions", "Class-based views"],
"resources": [
{
"type": "article",
"title": "Django Views",
"estimated_time": "30 mins"
},
{
"type": "video",
"title": "Function-Based Views in Django",
"estimated_time": "35 mins"
},
{
"type": "video",
"title": "Class-Based Views in Django",
"estimated_time": "30 mins"
}
],
"learning_objectives": ["Create view functions", "Use class-based views"]
},
{
"day": 5,
"title": "Module 5: Django Templates",
"topics": ["Template syntax", "Template inheritance"],
"resources": [
{
"type": "article",
"title": "Django Template Language",
"estimated_time": "25 mins"
},
{
"type": "video",
"title": "Template Inheritance in Django",
"estimated_time": "30 mins"
},
{
"type": "article",
"title": "Using Templates in Django Views",
"estimated_time": "20 mins"
}
],
"learning_objectives": [
"Understand template syntax",
"Use template inheritance"
]
},
{
"day": 6,
"title": "Module 6: Django Forms",
"topics": ["Form definition", "Form validation"],
"resources": [
{ "type": "video", "title": "Django Forms", "estimated_time": "40 mins" },
{
"type": "article",
"title": "Defining Forms in Django",
"estimated_time": "25 mins"
},
{
"type": "article",
"title": "Form Validation in Django",
"estimated_time": "20 mins"
}
],
"learning_objectives": ["Define Django forms", "Validate form data"]
},
{
"day": 7,
"title": "Module 7: Django URLs",
"topics": ["URL patterns", "URL routing"],
"resources": [
{
"type": "article",
"title": "Django URL Dispatcher",
"estimated_time": "25 mins"
},
{
"type": "video",
"title": "URL Patterns in Django",
"estimated_time": "30 mins"
},
{
"type": "article",
"title": "URL Routing in Django",
"estimated_time": "20 mins"
}
],
"learning_objectives": ["Define URL patterns", "Use URL routing"]
},
{
"day": 8,
"title": "Module 8: Django Authentication",
"topics": ["Authentication system", "User models"],
"resources": [
{
"type": "video",
"title": "Django Authentication System",
"estimated_time": "45 mins"
},
{
"type": "article",
"title": "Using Django's Built-in Authentication Views",
"estimated_time": "25 mins"
},
{
"type": "article",
"title": "Customizing User Models in Django",
"estimated_time": "20 mins"
}
],
"learning_objectives": [
"Understand Django authentication",
"Customize user models"
]
},
{
"day": 9,
"title": "Module 9: Django Deployment",
"topics": ["Deployment options", "Deploying to production"],
"resources": [
{
"type": "article",
"title": "Deploying Django Applications",
"estimated_time": "30 mins"
},
{
"type": "video",
"title": "Deploying Django to Heroku",
"estimated_time": "40 mins"
},
{
"type": "video",
"title": "Deploying Django to AWS",
"estimated_time": "40 mins"
}
],
"learning_objectives": [
"Understand deployment options",
"Deploy a Django application"
]
},
{
"day": 10,
"title": "Module 10: Django Best Practices",
"topics": ["Coding standards", "Security best practices"],
"resources": [
{
"type": "article",
"title": "Django Coding Standards",
"estimated_time": "20 mins"
},
{
"type": "video",
"title": "Django Security Best Practices",
"estimated_time": "35 mins"
},
{
"type": "article",
"title": "Django Performance Optimization",
"estimated_time": "25 mins"
}
],
"learning_objectives": [
"Follow coding standards",
"Implement security best practices"
]
}
]