├── README.md ├── Roboto-Regular.ttf ├── cert.jpg ├── cert.pdf ├── main.py ├── static.zip ├── teach-me.zip └── templates ├── Add_Events.html ├── Add_chapitre.html ├── Add_quizz.html ├── Chapitre.html ├── Courses_manager.html ├── Create_course.html ├── Create_page.html ├── Current_chapiter.html ├── Current_course.html ├── EditProfile.html ├── Edit_chapitre.html ├── Event.html ├── Felicitation.html ├── Live_Streaming.html ├── MyCourses.html ├── Profile.html ├── Quizz.html ├── Registration.html ├── Stream.html ├── StudentManager.html ├── TeacherManager.html ├── UserManager.html ├── about.html ├── all_comments.html ├── comment.html ├── contact.html ├── courses.html ├── delete_cmt.html ├── edit_course.html ├── editor.html ├── forum.html ├── forum_manager.html ├── forum_question.html ├── forum_viewd_question.html ├── header.html ├── index.html ├── indexc.html ├── login.html ├── tables.html ├── texteditor.html ├── timeline.html ├── video_feed.html └── videos.html /README.md: -------------------------------------------------------------------------------- 1 | # python-flask-E-learning-platform 2 | this is my e-learning platform created with Flask, a python microframwork with LMS (learning managment system) and forums plus Drag and drop quizes ,autocorrection , interactive admin and student dashboared 3 | -------------------------------------------------------------------------------- /Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbashar/python-flask-E-learning-platform/dedb8aabf315d8e4e59d3836f888285ace7c2d8a/Roboto-Regular.ttf -------------------------------------------------------------------------------- /cert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbashar/python-flask-E-learning-platform/dedb8aabf315d8e4e59d3836f888285ace7c2d8a/cert.jpg -------------------------------------------------------------------------------- /cert.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbashar/python-flask-E-learning-platform/dedb8aabf315d8e4e59d3836f888285ace7c2d8a/cert.pdf -------------------------------------------------------------------------------- /static.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbashar/python-flask-E-learning-platform/dedb8aabf315d8e4e59d3836f888285ace7c2d8a/static.zip -------------------------------------------------------------------------------- /teach-me.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbashar/python-flask-E-learning-platform/dedb8aabf315d8e4e59d3836f888285ace7c2d8a/teach-me.zip -------------------------------------------------------------------------------- /templates/Add_Events.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |

        Add a Event

3 | {% include"editor.html" %} 4 |
5 |
6 | 7 | 8 |
-------------------------------------------------------------------------------- /templates/Add_chapitre.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |

        Add a Chapiter

3 | {% include"editor.html" %} 4 | 5 |
6 |
7 | 8 | 9 |
-------------------------------------------------------------------------------- /templates/Add_quizz.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 24 |
25 |
26 |

Title

27 | 28 |
29 |
30 |
31 |
32 | 50 |
51 |
52 |
53 |
54 |
55 |
56 | 57 |
58 | 59 | 60 |
61 |
62 |
63 |
64 |
65 |

66 |

67 |

68 |

69 |

70 |
71 |

Correct answers

72 | 73 | 74 | 75 |
76 |                                                                                                                77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /templates/Chapitre.html: -------------------------------------------------------------------------------- 1 | {% include "header.html" %} -------------------------------------------------------------------------------- /templates/Courses_manager.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | 3 | {% for i in all_courses %} 4 |
5 |
6 | 7 | Red dot 8 |
9 |
{{ i[1] }}
10 |

{{ i[2] }}

11 | Edit this course 12 |
13 |
14 |
15 | {% endfor %} 16 | -------------------------------------------------------------------------------- /templates/Create_course.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | 3 | 10 |

Create Course


11 |
12 | 13 |
14 |
15 |

Title

16 | 17 |
18 |
19 |

Image

20 |
21 |
22 |
23 | 24 | 25 | 26 |
27 |

    Introduction

28 | 29 |

    Requiremment

30 | 31 |

    Difficulty

32 |              37 | 38 | 39 |
40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /templates/Create_page.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | 3 | {% include"editor.html" %} 4 | -------------------------------------------------------------------------------- /templates/Current_chapiter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Course 5 | 6 | 7 | 8 | 9 | 10 | Teach-Me 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 | 250 | 274 | 275 | 276 | 277 | 336 |
337 |
338 | {% for i in all_chapitres %} 339 | 340 | 341 | Sorry, your browser does not support inline SVG. 342 | 343 | 344 |
345 | 346 |
347 |
348 |
{{ all_chapitres.index(i) }}
349 |
351 | {{ i[1]|safe }} 352 | 353 |
354 |
355 | 356 |
357 |
by Hammouda Ryma
358 | 359 | 360 | 361 |
9 : 27 AM
362 | 363 |
364 | {% endfor %} 365 | 366 | 367 | 368 |
369 | 370 |
371 | 372 |
373 |

{{ current_chapiter[0][0]|safe }}

374 |
375 |

{{ current_chapiter[0][0]|safe }}:

376 |

{{ current_chapiter[0][1]|safe }}

377 | 378 |
379 | 380 | 381 | 382 |
383 |

384 | 385 |
386 |                                                                                                                                                                                   387 | 388 | 389 | {% if Current_chapiter_id != len_course %} 390 |
391 | {% else %} 392 | 393 |   Go to quizz
394 | {% endif %} 395 |
396 |
397 |
398 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | -------------------------------------------------------------------------------- /templates/Current_course.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Course 5 | 6 | 7 | 8 | 9 | 10 | Teach-Me 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 | 244 | 268 | 269 | 270 | 271 | 320 |
321 |
322 | {% for i in Courses_chapitres %} 323 | 324 | 325 | Sorry, your browser does not support inline SVG. 326 | 327 | 328 |
329 | 330 |
331 |
332 |
{{ Courses_chapitres.index(i)}}
333 |
334 | {{ i[0] }} 335 | 336 |
337 |
338 | 339 |
340 |
by Hammouda Ryma
341 | 342 | 343 | 344 |
9 : 27 AM
345 | 346 |
347 | {% endfor %} 348 | 349 | 350 | 351 |
352 | 353 |
354 | 355 |
356 |

{{ result[0][0] }}

357 |
358 |

Introduction:

359 |

{{ result[0][1]}}

360 | 361 |
362 |
363 |

Requiremment:

364 |

{{ result[0][2] }}

365 | 366 |
367 |
368 |

Chapiters:

369 |
    370 | {% for i in Courses_chapitres %} 371 |
  1. 372 | 373 |
    374 |

    {{ i[1]|safe }}

    375 | 376 |
    377 |
  2. 378 | {% endfor %} 379 | 380 |
381 | 382 |
383 | 384 |
385 | 386 | 387 |                                                                                                                                                                                    Start Learning 388 |
389 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | -------------------------------------------------------------------------------- /templates/EditProfile.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |
3 |
4 | 5 |
6 |

Edit Profile

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 | avatar 68 |
Upload a photo
69 | 72 | 73 |
74 |
75 |
76 |
77 | 78 | 79 | -------------------------------------------------------------------------------- /templates/Edit_chapitre.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | 3 | 4 | 5 | 6 |
7 | 8 |

Title

9 | 10 |
11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /templates/Event.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Teach-Me 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 | 56 | 57 | 58 | 59 | 60 | 61 | 62 |
63 | 64 |
65 | 123 |
124 | 125 |
126 |

{{event_info[0][1]}}

127 |

{{event_info[0][2]|safe}}

128 |
129 |
130 |

131 |

132 |

133 |

134 |

135 | 136 | 137 |
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 | 206 | 207 | 208 | 209 | 210 | 211 | -------------------------------------------------------------------------------- /templates/Felicitation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Course 5 | 6 | 7 | 8 | 9 | 10 | Teach-Me 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 | 250 | 274 | 275 | 276 | 277 | 336 |
337 |
338 |
339 |
340 |
341 | 342 |
343 |

Congratulations you have been Completed the Course

344 |   345 |                                                                    346 |
347 |

Your score in this course is: {{ mark[0][0] }}/{{all_mark[0][0]}}

348 | {% for i in signed_up_courses %} 349 | 350 |
351 |
352 |
353 | avatar 354 |
355 |

{{ i[1] }}

356 |

Difficulty : {{ i[3] }}

357 |

{{ i[4] }}

358 |

Mark:{{mark[0][0]}}

359 |
360 |
{% if i[5]==None %}{%else%} {{ i[5] }} {%endif%} % 361 | 362 |
363 |
364 |
365 |
366 | 367 |
368 | 369 |
370 | 371 |
372 |
373 |
374 | {%endfor%} 375 |
376 |
377 | 378 | 392 | 393 | 394 |
395 | 396 |
397 |

398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | -------------------------------------------------------------------------------- /templates/Live_Streaming.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Teach-Me — Forum 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 | 56 | 57 | 58 | 59 | 60 | 61 | 62 |
63 | 64 |
65 | 123 | 124 | 125 |
126 |
127 |
128 |

Live Streaming

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 | 226 |
227 | 228 |
229 | 230 |
231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | -------------------------------------------------------------------------------- /templates/MyCourses.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | {% for i in signed_up_courses %} 3 |
4 |
5 |
6 | avatar 7 |
8 |

{{ i[1] }}

9 |

Difficulty : {{ i[3] }}

10 |

Checkpoint :

11 |

{{ i[4] }}

12 | 13 |
14 |
{% if i[5]==None %}{%else%} {{ i[5] }} {%endif%} % 15 | 16 |
17 |
18 |
19 |
20 | Continue 21 |
22 | 23 |
24 |
25 |
26 | {% endfor %} -------------------------------------------------------------------------------- /templates/Profile.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} -------------------------------------------------------------------------------- /templates/Quizz.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Course 5 | 6 | 7 | 8 | 9 | 10 | Teach-Me 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 | 108 | 109 | 110 | {% if not quizes: %} 111 |

No Quizz yet ! stay tunned

112 | {% else %} 113 |

Quizz

114 |

Testing your Skills with our exercices to asure your knowledge

115 | {% for i in quizes %} 116 |
117 |

{{ i[1]|safe }}

118 | {{ i[2]|safe }} 119 |
120 | {% endfor %} 121 | 122 |                                                                                                                                  123 |                  124 |                  125 |                  126 |              127 | 128 | 129 | {% endif %} 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | -------------------------------------------------------------------------------- /templates/Registration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Register 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 |
28 |
29 | 30 |
31 |
32 |
33 |
34 |
35 |

Create an Account!

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 |
 Male
   67 |
 Female
68 |

69 |
70 |
 Student
   71 |
 Teacher
72 |
73 | 76 |
77 | 78 |
79 |
80 | Forgot Password? 81 |
82 | 85 |
86 |
87 |
88 |
89 |
90 | 91 |
92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /templates/Stream.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Teach-Me 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 | 54 | 62 | 63 | 64 | 65 |
66 | 67 |
68 | 123 | 124 |
125 |
126 |
127 | 128 |
129 | 130 |
131 | 132 | 133 | 134 |
135 |

Live Streaming

136 |
137 | 138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 | 148 |
149 |
150 |
151 |
152 | 153 |
154 | 155 | 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 | -------------------------------------------------------------------------------- /templates/StudentManager.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |
3 |
4 |
Students
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 | {% for i in AllStudents: %} 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | {% endfor %} 50 | 51 |
NameSurnameUsernameEmailBirthSexe
NameSurnameUsernameEmailBirthSexe
{{i[1]}}{{i[2]}}{{i[3]}}{{i[4]}}{{i[5]}}{{i[10]}}
52 |
53 |
54 |
55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /templates/TeacherManager.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |
3 |
4 |
Teachers
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 | {% for i in AllTeachers %} 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 54 | 55 | {% endfor %} 56 | 57 |
NameSurnameEmailBirthRoleAction
NameSurnameEmailBirthRoleAction
{{ i[1] }}{{ i[2] }}{{ i[4] }}{{ i[6] }}{{ i[10] }} 52 | 53 |
58 |
59 |
60 |
61 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /templates/UserManager.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |
3 | 4 | 5 |

Tables

6 |

DataTables is a third party plugin that is used to generate the demo table below. For more information about DataTables, please visit the official DataTables documentation.

7 | 8 | 9 |
10 |
11 |
DataTables Example
12 |
13 |
14 |
15 |
16 |
17 |
18 | 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 |
NamePositionOfficeAgeStart dateSalary
NamePositionOfficeAgeStart dateSalary
Airi SatouAccountantTokyo332008/11/28$162,700
Angelica RamosChief Executive Officer (CEO)London472009/10/09$1,200,000
Ashton CoxJunior Technical AuthorSan Francisco662009/01/12$86,000
Bradley GreerSoftware EngineerLondon412012/10/13$132,000
Brenden WagnerSoftware EngineerSan Francisco282011/06/07$206,850
Brielle WilliamsonIntegration SpecialistNew York612012/12/02$372,000
Bruno NashSoftware EngineerLondon382011/05/03$163,500
Caesar VancePre-Sales SupportNew York212011/12/12$106,450
Cara StevensSales AssistantNew York462011/12/06$145,600
Cedric KellySenior Javascript DeveloperEdinburgh222012/03/29$433,060
Showing 1 to 10 of 57 entries
114 |
115 |
116 |
117 | 118 |
-------------------------------------------------------------------------------- /templates/all_comments.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |
3 |
4 |
Students
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 | {% for i in all_comments: %} 34 | 35 | 36 | 37 | 38 | 39 | 40 | {% endfor %} 41 | 42 |
CommentUsernameAction
CommentUsernameAction
{{i[0]}}{{i[1]}}{{i[2]}} Delete
43 |
44 |
45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /templates/comment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Teach-Me — Contact Us 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 | 53 | 54 | 55 | 56 | 57 |
58 | 59 |
60 | 129 | 130 | 149 | 150 |
151 |
152 |
153 |
154 | 155 |
156 |

Contact Information

157 | 163 |
164 | 165 |
166 |
167 |

Get In Touch

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 |

Get 400 of Online Courses for Free

218 |

By Mike Smith

219 |
220 |

Limited Offer, Hurry Up!

221 |

Register Now!

222 |
223 |
224 |
225 |
226 | 227 | 290 |
291 | 292 |
293 | 294 |
295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 340 | 341 | 342 | 343 | -------------------------------------------------------------------------------- /templates/courses.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Teach-Me — Courses 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 | 54 | 55 | 56 | 57 | 58 |
59 | 60 |
61 | 118 | 119 | 138 | 139 |
140 |
141 |
142 |
143 |

Our Course

144 | 145 |
146 |
147 | 148 | {% for i in Courses: %} 149 |
150 |
151 |
152 | 1111111 153 | 154 |
155 |

{{ i[1] }}

156 |

{{ i[2] }}

157 | {%if login_button !=1%} 158 | Take A Course 159 | {%endif%} 160 |
161 |
162 |
163 |
164 | 165 | {% endfor %} 166 | 167 | 168 | 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 | 267 | 268 | 269 | 270 | -------------------------------------------------------------------------------- /templates/delete_cmt.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |
3 |
Vous étes sur de supprimer ce Commentaire ?
4 |
5 |
6 |
7 |
                                                                                                 8 |
9 | 10 | 11 | 12 | 13 |
14 |
15 | 16 |
17 |
-------------------------------------------------------------------------------- /templates/edit_course.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | 40 | 41 |
42 |
43 | 44 | 45 |

Edit Course

46 |                  47 |                                                                 2222 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 |

Chapiters :

79 |
80 |
81 | 87 |
88 |
89 |
90 | {% for i in course_chapiters_liste %} 91 |
{{i[1]|safe}} 92 | 93 | 94 | 95 |
96 | {% endfor %} 97 | 98 |
99 |
100 | 101 |
102 | 103 |
104 |

Quizzes:

105 |
106 |
107 | 108 |
109 |                                                                                      110 |   Add Chapiter 111 | 112 | 113 |   Add quizz 114 |
115 |
116 | 117 | 118 | 119 | -------------------------------------------------------------------------------- /templates/editor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 |

Title

8 | 9 |
10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /templates/forum.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Teach-Me — Forum 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 | 56 | 57 | 58 | 59 | 60 | 61 | 62 |
63 | 64 |
65 | 123 | 124 | 143 | 144 | 145 | 146 | 147 |
148 |
149 |
150 |

Check All question Here.

151 | {% for i in all_question: %} 152 |

{{ i[0] }}

153 |
{{ i[1] }}
154 | {% endfor %} 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 |
163 |

Ask Question


164 |
165 | 166 | 167 | 168 | 169 | 170 |
171 | 172 | 173 | 174 | 175 |
176 |
177 | 178 |
179 |
180 | 181 | 182 |
183 |
184 |
185 |
186 |
187 |

Get 400 of Online Courses for Free

188 |

By Mike Smith

189 |
190 |

Limited Offer, Hurry Up!

191 |

Register Now!

192 |
193 |
194 |
195 |
196 | 197 | 260 |
261 | 262 |
263 | 264 |
265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | -------------------------------------------------------------------------------- /templates/forum_manager.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 |
3 |
4 |
Students
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 | {% for i in forum: %} 31 | 32 | 33 | 34 | 35 | 36 | {% endfor %} 37 | 38 |
QuestionAuthor
QuestionAuthor
{{i[0]}}{{i[2]}}{{i[1]}}
39 |
40 |
41 |
42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /templates/forum_question.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forum 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | {% for i in all_question %} 36 | 37 | 41 | 44 | 47 | 48 | 53 | 54 | 55 | 56 | {% endfor %} 57 | 58 | 59 | 60 | 61 | 62 |

Subject

Question

Posts

Ansewers

Last post

38 |

{{ i[0]|safe }}

39 | 40 |
42 |
{{ i[1]|safe }}
43 |
45 |
{{ i[2]|safe }}
46 |

{{ i[2] }} viewd , {{ i[2] }} comments

49 |

50 | 51 |
22/05/2019 , 22:50 AM
52 |
63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /templates/forum_viewd_question.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Forum 5 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 |
114 | 118 |
119 |
120 |
121 |

{{ result[0][0]|safe }}

122 |
123 |
124 |

{{ result[0][1]|safe }}

125 | 126 |
127 | 140 | 141 | 142 |
143 |
144 |
145 | 153 |
154 | 159 | 160 |
161 |
162 |
    163 | {% for i in result1: %} 164 |
  • 165 | 166 | profile 167 | 168 | 169 |
    170 |
    171 |

    {{i[5]}}

    172 |
      173 |
    • {{i[4]}}
    • 174 |
    • 175 |
    • 176 |
    177 |

    178 |

    {{ i[3] }}

    179 |

    180 | 181 |
    182 |
    183 |
    184 |
      185 |
    • 186 | 187 | profile 188 | 189 |
      190 |
      191 |

      The Hipster

      192 |
        193 |
      • 22
      • 194 |
      • 09
      • 195 |
      • 2014
      • 196 |
      197 |

      198 | Nice job Maria. 199 |

      200 | Reply 201 |
      202 |
      203 |
    • 204 |
    • 205 | 206 | profile 207 | 208 |
      209 |
      210 |

      Mary

      211 |
        212 |
      • 22
      • 213 |
      • 09
      • 214 |
      • 2014
      • 215 |
      216 |

      217 | Thank you Guys! 218 |

      219 | Reply 220 |
      221 |
      222 |
    • 223 |
    224 |
    225 |
  • 226 | {% endfor %} 227 | 228 | 229 |
230 | 231 |
232 | 233 |
234 | 235 |
236 |
237 | 238 |
239 |
240 | 241 |
242 |
243 | 244 |
245 | 246 |
247 |
248 |
249 | 251 |
252 | 253 | 254 | 255 | 256 | -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Admin 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 164 | 165 | 166 | 167 |
168 | 169 | 170 |
171 | 172 | 173 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | {% include"header.html" %} 2 | 3 | 4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |

Signed Courses

12 |
13 |

{%if nb_courses%}{{nb_courses[0]}}{%else%}0{%endif%}

14 |
15 |
16 |
17 |
18 |
19 |

Current Points Scored

20 |

{%if s%}{{s}}{%else%}0{%endif%}

21 |
22 | 23 |
24 |
25 |
26 |
27 |
28 |

Forum Participation

29 |

{{cmt}}

30 |
31 |
32 |
33 |
34 |
35 |

Reply On Forum

36 |

{{cmt}}

37 |
38 |
39 |
40 |
41 |
42 |
43 | 44 | 45 | {%for i in charts%} 46 |
{{i[0]}}
47 |
48 |
49 | {{i[0]}} {{i[2]}}% 50 |
51 |
52 |
53 | {%endfor%} 54 | 55 |
56 | 57 | 58 | -------------------------------------------------------------------------------- /templates/indexc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Teach-Me 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 | 53 | 54 | 55 | 56 | 57 |
58 | 59 |
60 | 115 | 116 | 164 | 165 |
166 |
167 |
168 |
169 |

Course categories

170 | 171 |
172 |
173 |
174 |
175 |
176 | 177 | 178 | 179 |
180 |

Business

181 | 182 |
183 |
184 |
185 |
186 |
187 | 188 | 189 | 190 |
191 |

Health & Psychology

192 | 193 |
194 |
195 |
196 |
197 |
198 | 199 | 200 | 201 |
202 |

Accounting

203 | 204 |
205 |
206 |
207 |
208 |
209 | 210 | 211 | 212 |
213 |

Science & Technology

214 | 215 |
216 |
217 |
218 |
219 |
220 | 221 | 222 | 223 |
224 |

Art & Media

225 | 226 |
227 |
228 |
229 |
230 |
231 | 232 | 233 | 234 |
235 |

Real Estate

236 | 237 |
238 |
239 |
240 |
241 |
242 | 243 | 244 | 245 |
246 |

Language

247 | 248 |
249 |
250 |
251 |
252 |
253 | 254 | 255 | 256 |
257 |

Web & Programming

258 | 259 |
260 |
261 |
262 |
263 |
264 |
265 | 266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 | 274 | 275 | Foreign Followers 276 |
277 |
278 | 279 | 280 | Students Enrolled 281 |
282 |
283 | 284 | 285 | Classes Complete 286 |
287 |
288 | 289 | 290 | Certified Teachers 291 |
292 |
293 |
294 |
295 |
296 |
297 | 298 |
299 |
300 |
301 |
302 |

Our Populaire Courses

303 | 304 |
305 |
306 | {% for i in all_courses %} 307 |
308 |
309 |
310 | Red dot 311 | 312 |
313 |

{{ i[1] }}

314 |

{{ i[2] }}

315 |

{{i[4]}}

316 |
317 |
318 |
319 | 320 | 321 |
322 | {% endfor %} 323 |
324 |
325 | 326 |
327 |
328 |
329 |
330 | 331 |
332 |
333 |
334 |
335 |

Events

336 |
337 |
338 |
339 | {%for i in events%} 340 | 341 |
342 |
343 |
15
Mar.
344 |

{{i[1]}}

345 |

{{i[2]|safe}}

346 |

Read More

347 |
348 |
349 | {%endfor%} 350 | 351 |
352 | 353 |
354 |
355 | 356 | 357 | 358 | 359 |
360 |
361 |
362 |
363 | 364 |
365 | 366 | 374 | 375 |
376 |
377 |
378 | 379 |
380 | 381 |
382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 424 | 425 | 426 | 427 | -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | TEACH-ME Login 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 |
29 | 30 |
31 | 32 |
33 |
34 | 35 |
36 | 38 |
39 |
40 |
41 |

Welcome Back!

42 |
43 |
44 |
45 | 46 |
47 |
48 | 49 |
50 |
51 |
52 | 53 | 54 |
55 |
56 | 59 |
60 | 61 | Create An Account ! 62 | 63 | 64 |
65 |
66 |
67 | Forgot Password? 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 | -------------------------------------------------------------------------------- /templates/texteditor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /templates/timeline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Timeline 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
    22 |
  • 23 |
    24 | Abhi Sharma 25 | 11/15/2014 26 |
    27 |
    28 |

    Shift Created

    29 |
    30 |
  • 31 |
  • 32 |
    33 | PAM Admin 34 | 11/15/2014 35 |
    36 |
    37 |

    Email Sent

    38 |
    39 |
  • 40 |
  • 41 |
    42 | Aaron Rodgers 43 | 11/15/2014 44 |
    45 |
    46 |

    SIC Approval

    47 |
    48 |
  • 49 |
  • 50 |
    51 | PAM Admin 52 | TBD 53 |
    54 |
    55 |

    Shift Completed

    56 |
    57 |
  • 58 |
59 | 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /templates/video_feed.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/videos.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Teach-Me — Forum 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 | 56 | 57 | 58 | 59 | 60 | 61 | 62 |
63 | 64 |
65 | 123 | 124 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 226 |
227 | 228 |
229 | 230 |
231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | --------------------------------------------------------------------------------