-
Notifications
You must be signed in to change notification settings - Fork 286
/
sample_db.json
1544 lines (1544 loc) · 44.5 KB
/
sample_db.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
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
250
251
252
253
254
255
256
257
258
259
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
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
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
407
408
409
410
411
412
413
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"pk": 1,
"fields": {
"email": "[email protected]",
"country": "Germany",
"photo_credit": "",
"team": [
2,
3
],
"is_on_homepage": true,
"main_organizer": 2,
"photo": "",
"date": "2014-07-21",
"city": "Berlin",
"name": "Django Girls Berlin",
"latlng": "52.5170365, 13.3888599",
"photo_link": "",
"page_custom_css": "",
"page_main_color": "FF9400",
"page_title": "Django Girls Berlin",
"is_page_live": false,
"page_description": "Django Girls is a one-day workshop about programming in Python and Django tailored for women.",
"page_url": "berlin1"
},
"model": "core.event"
},
{
"pk": 2,
"fields": {
"email": "[email protected]",
"country": "Netherlands",
"photo_credit": "",
"team": [
4
],
"is_on_homepage": true,
"main_organizer": 4,
"photo": "",
"date": "2020-03-12",
"city": "Amsterdam",
"name": "Django Girls Amsterdam",
"latlng": "52.374436, 4.8979956033677",
"photo_link": "",
"page_custom_css": "",
"page_main_color": "FF9400",
"page_title": "Django Girls Amsterdam",
"is_page_live": false,
"page_description": "Django Girls is a one-day workshop about programming in Python and Django tailored for women.",
"page_url": "amsterdam"
},
"model": "core.event"
},
{
"pk": 1,
"fields": {
"position": 0,
"event": 1,
"is_public": true,
"name": "about",
"content": "<div style=\"text-align: center;\">\n\n\t<h1>Free programming workshop for women</h1>\n\t<h2>Build your first website at EuroPython 2014 in Berlin!</h2>\n\t<a class=\"btn\" href=\"#values\">Learn more \u00bb</a>\n\n</div>\n",
"background": "event/backgrounds/about2.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 2,
"fields": {
"position": 1,
"event": 1,
"is_public": true,
"name": "values",
"content": "<div class=\"row\">\n\t<div class=\"col-md-6\">\n\t\t<h3>Django Girls</h3>\n\t\t<p>\n\t\t\tIf you are a female and you want to learn how to make websites, \n\t\t\twe have good news for you! We are holding a one-day workshop for beginners!\n\t </p>\n\n\t\t<p>\n\t\t\tIt will take place on <strong>21st of July</strong> in <strong>Berlin</strong>,\n\t\t\ton the first day of a big IT conference: <a href=\"http://europython.eu/\">EuroPython</a>, \n\t\t\twhich gathers a lot of talented programmers from all over the world.\n\t\t</p>\n\n\t\t<p>\n\t\t\tWe believe that IT industry will greatly benefit from bringing more women\n\t\t\tinto technology. We want to give you an opportunity to learn how to program\n\t\t\tand become one of us - female programmers!\n\t\t</p>\n\n\t\t<p>\n\t\t\tWorkshops are free of charge and if you can\u2019t afford coming to Berlin,\n\t\t\tbut you are very motivated to learn and then share your knowledge with others,\n\t\t\twe have some funds to help you out with your travel costs and accommodation. \n\t\t\tDon\u2019t wait too long - you can apply for a pass only until <strong>30th of June</strong>!\n\t \t</p> \n\t </div> \n\n\t <div class=\"col-md-6\">\n\t \t<h3>Apply for a pass!</h3>\n\t \t<p>\n\t \t\tIf you are a woman, you know English and have a laptop - you can apply\n\t \t\tfor a pass! You don\u2019t need to know any technical stuff - workshops\n\t \t\tare for people who are new to programming.\n\t \t</p>\n\n\t \t<p>\n\t \t\tAs a workshop attendee you will:\n\t \t\t<ul>\n\t \t\t\t<li>attend one-day Django workshops during which you will create your first website</li>\n\t \t\t\t<li>get a free EuroPython ticket (which normally costs 400 \u20ac!), where you can meet people from the industry and learn more about programming</li>\n\t \t\t\t<li>be fed by us - during workshops and EuroPython food is provided</li>\n\t \t\t</ul>\n\t \t</p>\n\n\t \t<p>We have space only for 40 people, so make sure to fill the form very carefully!</p>\n\t </div>\n</div>",
"background": ""
},
"model": "core.eventpagecontent"
},
{
"pk": 3,
"fields": {
"position": 2,
"event": 1,
"is_public": true,
"name": "apply",
"content": "<div class=\"row\">\n\n\t<div class=\"col-md-7 col-md-offset-5\">\n\n\t\t<h2>Applications are now open!</h2>\n\n\t\t<p>\n\t\t\tApplication process closes on July 23rd and you\\'ll be informedabout acceptance or rejection by July 28th (or sooner)!\n\t\t</p>\n\n\t\t<a class=\"btn\" href=\"apply\">Register</a>\n\n\t</div>\n</div>",
"background": "event/backgrounds/apply_XBcgJmu.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 4,
"fields": {
"position": 3,
"event": 1,
"is_public": true,
"name": "faq",
"content": "<div class=\"row\">\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Do I need to know anything about websites or programming?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tNo! Workshops are for beginners. You don\u2019t need to know anything about it. \n\t\t\tHowever, if you have a little bit of technical knowledge (i.e. you know what HTML or CSS are) you still can apply!\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>I am not living in Germany, can I attend?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tOf course! Workshops will be in English, so if you have no troubles with speaking \n\t\t\tand understanding English - you should apply. If you need financial aid to get to \n\t\t\tBerlin or you need assistance with booking flights or hotel in Berlin - let us know. \n\t\t\tWe are willing to help you!\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Should I bring my own laptop?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tYes. We have no hardware, so we expect you to bring your computer with you. \n\t\t\tIt is also important for us that you will take home everything you\u2019ll write and create during workshops. \n\t\t</p>\n\t</div>\n</div>\n\n<div class=\"row\" style=\"margin-top: 30px\">\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Do I need to have something installed on my laptop? </b>\n\t\t</p>\n\t\t<p>\n\t\t\tIt would be helpful to have Django installed before workshops, but wouldn't\n\t\t\texpect you to install anything on your own.We will make sure that one of our\n\t\t\tcoaches will help you out with this task. \n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Is EuroPython conference good for a total beginner?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tAs a workshop attendee you will get a free ticket to EuroPython - conference for Python programmers. \n\t\t\tEven though you are new to programming,conference is a good place to meet many interesting people \n\t\t\tin the industry and find inspiration.\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p><b>Is food provided? </b></p>\n\t\t<p>Yes. Thanks to EuroPython, snacks and lunch will be served during workshops. </p>\n\t</div>\n</div>",
"background": ""
},
"model": "core.eventpagecontent"
},
{
"pk": 5,
"fields": {
"position": 4,
"event": 1,
"is_public": true,
"name": "coach",
"content": "<div class=\"row\">\n\t<div class=\"col-md-6\">\n\t\t<h2>Be a Mentor!</h2>\n\t\t<p>\n\t\t\tWe would be delighted if you would like to join us as a mentor! \n\t\t\tFill in the form <a href=\"http://t.co/YvvAFiUvKN\">here</a>, but \n\t\t\tselect the option to be a mentor.\n\t\t</p>\n\t\t<p>\n\t\t\tWe will contact you :)\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-6\">\n\t\t<h2>Django Girls</h2>\n\t\t<p>\n\t\t\tDjango Girls Australia is a part of bigger initiative: <a href=\"http://djangogirls.org/\">Django Girls</a>. \n\t\t\tIt is a non-profit organization and events are organized by volunteers in different places of the world. \n\t\t</p>\n\t\t<p>\n\t\t\tTo see the source for the program find us on Github: \n\t\t\t<a href=\"https://github.com/DjangoGirls/\">github.com/DjangoGirls</a>.\n\t\t</p>\n\t\t<p>\n\t\t\tIf you want to bring Django Girls to your city, drop us a line: \n\t\t\t<a href=\"mailto:[email protected]\">[email protected]</a>.\n\t\t</p>\n\t</div>\n</div>",
"background": "event/backgrounds/coach2_udXLYFp.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 6,
"fields": {
"position": 5,
"event": 1,
"is_public": true,
"name": "partners",
"content": "<h3>Sponsors</h3>\n\n<p>\n\tWe couldn't be here without the support from amazing people and organizations \n\twho donated money, knowledge and time to help us make this a reality. \n\tIf you want to contribute and support our goal, please get in touch: \n\t<a href=\"mailto:[email protected]\">[email protected]</a>\n</p>",
"background": ""
},
"model": "core.eventpagecontent"
},
{
"pk": 7,
"fields": {
"position": 6,
"event": 1,
"is_public": true,
"name": "footer",
"content": "<div class=\"row social\">\n\n\t<div class=\"col-md-4\">\n\t\t<div class=\"facebook\">\n\t\t\t<div class=\"fb-page\" \n\t\t\t data-href=\"https://www.facebook.com/djangogirls\" \n\t\t\t data-small-header=\"true\" \n\t\t\t data-adapt-container-width=\"true\" \n\t\t\t data-hide-cover=\"true\" \n\t\t\t data-show-facepile=\"false\" \n\t\t\t data-show-posts=\"false\"\n\t\t\t>\n\t\t\t\t<div class=\"fb-xfbml-parse-ignore\">\n\t\t\t\t\t<blockquote cite=\"https://www.facebook.com/djangogirls\">\n\t\t\t\t\t\t<a href=\"https://www.facebook.com/djangogirls\">Django Girls</a>\n\t\t\t\t\t</blockquote>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<div class=\"twitter\">\n\t\t\t<a href=\"https://twitter.com/djangogirls\" \n\t\t\t class=\"twitter-follow-button\" \n\t\t\t data-show-count=\"false\" \n\t\t\t data-size=\"large\"\n\t\t\t>\n\t\t\t\tFollow @djangogirls\n\t\t\t</a>\n\t\t</div>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\tGet in touch:<br> \n\t\t<a href=\"mailto:[email protected]\">[email protected]</a><br><br>\n\t</div>\n</div>\n\n<div class=\"row credits\">\n\t<div class=\"col-md-12\">\n\t\t\u2665 Django Girls Europe is organized by <a href=\"http://twitter.com/olasitarska\">Ola Sitarska</a> a\n\t\tnd <a href=\"http://twitter.com/asednecka\">Ola Sendecka</a> with the support from \n\t\t<a href=\"http://europython.eu/\">EuroPython 2014</a>.<br>\n\n\t\tDjango Girls Europe is a part of <a href=\"/\">Django Girls</a>.\n\t\t<br>Every participant needs to follow the <a href=\"/pages/coc/\">Code of Conduct</a>.\n\t</div>\n</div>",
"background": "event/backgrounds/footer1_p9mRDXD.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 8,
"fields": {
"position": 0,
"event": 2,
"is_public": true,
"name": "about",
"content": "<div style=\"text-align: center;\">\n\n\t<h1>Free programming workshop for women</h1>\n\t<h2>Build your first website at EuroPython 2014 in Berlin!</h2>\n\t<a class=\"btn\" href=\"#values\">Learn more \u00bb</a>\n\n</div>\n",
"background": "event/backgrounds/about1_qSYGr1z.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 9,
"fields": {
"position": 1,
"event": 2,
"is_public": true,
"name": "values",
"content": "<div class=\"row\">\n\t<div class=\"col-md-6\">\n\t\t<h3>Django Girls</h3>\n\t\t<p>\n\t\t\tIf you are a female and you want to learn how to make websites, \n\t\t\twe have good news for you! We are holding a one-day workshop for beginners!\n\t </p>\n\n\t\t<p>\n\t\t\tIt will take place on <strong>21st of July</strong> in <strong>Berlin</strong>,\n\t\t\ton the first day of a big IT conference: <a href=\"http://europython.eu/\">EuroPython</a>, \n\t\t\twhich gathers a lot of talented programmers from all over the world.\n\t\t</p>\n\n\t\t<p>\n\t\t\tWe believe that IT industry will greatly benefit from bringing more women\n\t\t\tinto technology. We want to give you an opportunity to learn how to program\n\t\t\tand become one of us - female programmers!\n\t\t</p>\n\n\t\t<p>\n\t\t\tWorkshops are free of charge and if you can\u2019t afford coming to Berlin,\n\t\t\tbut you are very motivated to learn and then share your knowledge with others,\n\t\t\twe have some funds to help you out with your travel costs and accommodation. \n\t\t\tDon\u2019t wait too long - you can apply for a pass only until <strong>30th of June</strong>!\n\t \t</p> \n\t </div> \n\n\t <div class=\"col-md-6\">\n\t \t<h3>Apply for a pass!</h3>\n\t \t<p>\n\t \t\tIf you are a woman, you know English and have a laptop - you can apply\n\t \t\tfor a pass! You don\u2019t need to know any technical stuff - workshops\n\t \t\tare for people who are new to programming.\n\t \t</p>\n\n\t \t<p>\n\t \t\tAs a workshop attendee you will:\n\t \t\t<ul>\n\t \t\t\t<li>attend one-day Django workshops during which you will create your first website</li>\n\t \t\t\t<li>get a free EuroPython ticket (which normally costs 400 \u20ac!), where you can meet people from the industry and learn more about programming</li>\n\t \t\t\t<li>be fed by us - during workshops and EuroPython food is provided</li>\n\t \t\t</ul>\n\t \t</p>\n\n\t \t<p>We have space only for 40 people, so make sure to fill the form very carefully!</p>\n\t </div>\n</div>",
"background": ""
},
"model": "core.eventpagecontent"
},
{
"pk": 10,
"fields": {
"position": 2,
"event": 2,
"is_public": true,
"name": "apply",
"content": "<div class=\"row\">\n\n\t<div class=\"col-md-7 col-md-offset-5\">\n\n\t\t<h2>Applications are now open!</h2>\n\n\t\t<p>\n\t\t\tApplication process closes on July 23rd and you\\'ll be informedabout acceptance or rejection by July 28th (or sooner)!\n\t\t</p>\n\n\t\t<a class=\"btn\" href=\"apply\">Register</a>\n\n\t</div>\n</div>",
"background": "event/backgrounds/apply_U30O1VM.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 11,
"fields": {
"position": 3,
"event": 2,
"is_public": true,
"name": "faq",
"content": "<div class=\"row\">\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Do I need to know anything about websites or programming?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tNo! Workshops are for beginners. You don\u2019t need to know anything about it. \n\t\t\tHowever, if you have a little bit of technical knowledge (i.e. you know what HTML or CSS are) you still can apply!\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>I am not living in Germany, can I attend?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tOf course! Workshops will be in English, so if you have no troubles with speaking \n\t\t\tand understanding English - you should apply. If you need financial aid to get to \n\t\t\tBerlin or you need assistance with booking flights or hotel in Berlin - let us know. \n\t\t\tWe are willing to help you!\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Should I bring my own laptop?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tYes. We have no hardware, so we expect you to bring your computer with you. \n\t\t\tIt is also important for us that you will take home everything you\u2019ll write and create during workshops. \n\t\t</p>\n\t</div>\n</div>\n\n<div class=\"row\" style=\"margin-top: 30px\">\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Do I need to have something installed on my laptop? </b>\n\t\t</p>\n\t\t<p>\n\t\t\tIt would be helpful to have Django installed before workshops, but wouldn't\n\t\t\texpect you to install anything on your own.We will make sure that one of our\n\t\t\tcoaches will help you out with this task. \n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p>\n\t\t\t<b>Is EuroPython conference good for a total beginner?</b>\n\t\t</p>\n\t\t<p>\n\t\t\tAs a workshop attendee you will get a free ticket to EuroPython - conference for Python programmers. \n\t\t\tEven though you are new to programming,conference is a good place to meet many interesting people \n\t\t\tin the industry and find inspiration.\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<p><b>Is food provided? </b></p>\n\t\t<p>Yes. Thanks to EuroPython, snacks and lunch will be served during workshops. </p>\n\t</div>\n</div>",
"background": ""
},
"model": "core.eventpagecontent"
},
{
"pk": 12,
"fields": {
"position": 4,
"event": 2,
"is_public": true,
"name": "coach",
"content": "<div class=\"row\">\n\t<div class=\"col-md-6\">\n\t\t<h2>Be a Mentor!</h2>\n\t\t<p>\n\t\t\tWe would be delighted if you would like to join us as a mentor! \n\t\t\tFill in the form <a href=\"http://t.co/YvvAFiUvKN\">here</a>, but \n\t\t\tselect the option to be a mentor.\n\t\t</p>\n\t\t<p>\n\t\t\tWe will contact you :)\n\t\t</p>\n\t</div>\n\n\t<div class=\"col-md-6\">\n\t\t<h2>Django Girls</h2>\n\t\t<p>\n\t\t\tDjango Girls Australia is a part of bigger initiative: <a href=\"http://djangogirls.org/\">Django Girls</a>. \n\t\t\tIt is a non-profit organization and events are organized by volunteers in different places of the world. \n\t\t</p>\n\t\t<p>\n\t\t\tTo see the source for the program find us on Github: \n\t\t\t<a href=\"https://github.com/DjangoGirls/\">github.com/DjangoGirls</a>.\n\t\t</p>\n\t\t<p>\n\t\t\tIf you want to bring Django Girls to your city, drop us a line: \n\t\t\t<a href=\"mailto:[email protected]\">[email protected]</a>.\n\t\t</p>\n\t</div>\n</div>",
"background": "event/backgrounds/coach2_ScUocFf.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 13,
"fields": {
"position": 5,
"event": 2,
"is_public": true,
"name": "partners",
"content": "<h3>Sponsors</h3>\n\n<p>\n\tWe couldn't be here without the support from amazing people and organizations \n\twho donated money, knowledge and time to help us make this a reality. \n\tIf you want to contribute and support our goal, please get in touch: \n\t<a href=\"mailto:[email protected]\">[email protected]</a>\n</p>",
"background": ""
},
"model": "core.eventpagecontent"
},
{
"pk": 14,
"fields": {
"position": 6,
"event": 2,
"is_public": true,
"name": "footer",
"content": "<div class=\"row social\">\n\n\t<div class=\"col-md-4\">\n\t\t<div class=\"facebook\">\n\t\t\t<div class=\"fb-page\" \n\t\t\t data-href=\"https://www.facebook.com/djangogirls\" \n\t\t\t data-small-header=\"true\" \n\t\t\t data-adapt-container-width=\"true\" \n\t\t\t data-hide-cover=\"true\" \n\t\t\t data-show-facepile=\"false\" \n\t\t\t data-show-posts=\"false\"\n\t\t\t>\n\t\t\t\t<div class=\"fb-xfbml-parse-ignore\">\n\t\t\t\t\t<blockquote cite=\"https://www.facebook.com/djangogirls\">\n\t\t\t\t\t\t<a href=\"https://www.facebook.com/djangogirls\">Django Girls</a>\n\t\t\t\t\t</blockquote>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\t<div class=\"twitter\">\n\t\t\t<a href=\"https://twitter.com/djangogirls\" \n\t\t\t class=\"twitter-follow-button\" \n\t\t\t data-show-count=\"false\" \n\t\t\t data-size=\"large\"\n\t\t\t>\n\t\t\t\tFollow @djangogirls\n\t\t\t</a>\n\t\t</div>\n\t</div>\n\n\t<div class=\"col-md-4\">\n\t\tGet in touch:<br> \n\t\t<a href=\"mailto:[email protected]\">[email protected]</a><br><br>\n\t</div>\n</div>\n\n<div class=\"row credits\">\n\t<div class=\"col-md-12\">\n\t\t\u2665 Django Girls Europe is organized by <a href=\"http://twitter.com/olasitarska\">Ola Sitarska</a> a\n\t\tnd <a href=\"http://twitter.com/asednecka\">Ola Sendecka</a> with the support from \n\t\t<a href=\"http://europython.eu/\">EuroPython 2014</a>.<br>\n\n\t\tDjango Girls Europe is a part of <a href=\"/\">Django Girls</a>.\n\t\t<br>Every participant needs to follow the <a href=\"/pages/coc/\">Code of Conduct</a>.\n\t</div>\n</div>",
"background": "event/backgrounds/footer2.jpg"
},
"model": "core.eventpagecontent"
},
{
"pk": 1,
"fields": {
"position": 0,
"title": "About",
"event": 1,
"url": "#values"
},
"model": "core.eventpagemenu"
},
{
"pk": 2,
"fields": {
"position": 1,
"title": "Apply for a pass!",
"event": 1,
"url": "#apply"
},
"model": "core.eventpagemenu"
},
{
"pk": 3,
"fields": {
"position": 2,
"title": "FAQ",
"event": 1,
"url": "#faq"
},
"model": "core.eventpagemenu"
},
{
"pk": 4,
"fields": {
"position": 3,
"title": "Become a coach",
"event": 1,
"url": "#coach"
},
"model": "core.eventpagemenu"
},
{
"pk": 5,
"fields": {
"position": 4,
"title": "Partners",
"event": 1,
"url": "#partners"
},
"model": "core.eventpagemenu"
},
{
"pk": 6,
"fields": {
"position": 0,
"title": "About",
"event": 2,
"url": "#values"
},
"model": "core.eventpagemenu"
},
{
"pk": 7,
"fields": {
"position": 1,
"title": "Apply for a pass!",
"event": 2,
"url": "#apply"
},
"model": "core.eventpagemenu"
},
{
"pk": 8,
"fields": {
"position": 2,
"title": "FAQ",
"event": 2,
"url": "#faq"
},
"model": "core.eventpagemenu"
},
{
"pk": 9,
"fields": {
"position": 3,
"title": "Become a coach",
"event": 2,
"url": "#coach"
},
"model": "core.eventpagemenu"
},
{
"pk": 10,
"fields": {
"position": 4,
"title": "Partners",
"event": 2,
"url": "#partners"
},
"model": "core.eventpagemenu"
},
{
"pk": 1,
"fields": {
"event": 2,
"text_header": "Apply for a spot at Django Girls [City]!",
"open_from": "2015-11-07T12:58:24Z",
"confirmation_mail": "Hi there!This is a confirmation of your application to <a href=\"http://djangogirls.org/{city}\">Django Girls {CITY}</a>. Yay! That's a huge step already, we're proud of you!\r\n\r\nMind that this is not a confirmation of participation in the event, but a confirmation that we received your application.\r\n\r\nYou'll receive an email from the team that organizes Django Girls {CITY} soon. You can always reach them by answering to this email or by writing to {your event mail}.\r\nFor your reference, we're attaching your answers below.\r\n\r\nHugs, cupcakes and high-fives!\r\nDjango Girls",
"text_description": "Yay! We're so excited you want to be a part of our workshop. Please mind that filling out the form below does not give you a place on the workshop, but a chance to get one. The application process is open from {INSERT DATE} until {INSERT DATE}. If you're curious about the criteria we use to choose applicants, you can read about it on <a href='http://blog.djangogirls.org/post/91067112853/djangogirls-how-we-scored-applications'>Django Girls blog</a>. Good luck!",
"open_until": "2020-01-03T00:01:00Z"
},
"model": "applications.form"
},
{
"pk": 1,
"fields": {
"question_type": "paragraph",
"choices": "",
"is_multiple_choice": false,
"title": "What's your name?",
"form": 1,
"order": 1,
"is_required": true,
"help_text": ""
},
"model": "applications.question"
},
{
"pk": 2,
"fields": {
"question_type": "email",
"choices": "",
"is_multiple_choice": false,
"title": "Your e-mail address:",
"form": 1,
"order": 2,
"is_required": true,
"help_text": ""
},
"model": "applications.question"
},
{
"pk": 3,
"fields": {
"question_type": "paragraph",
"choices": "",
"is_multiple_choice": false,
"title": "Your phone number:",
"form": 1,
"order": 3,
"is_required": true,
"help_text": "Include your country prefix"
},
"model": "applications.question"
},
{
"pk": 4,
"fields": {
"question_type": "paragraph",
"choices": "",
"is_multiple_choice": false,
"title": "Where are you from?",
"form": 1,
"order": 4,
"is_required": true,
"help_text": "City, Country"
},
"model": "applications.question"
},
{
"pk": 5,
"fields": {
"question_type": "paragraph",
"choices": "",
"is_multiple_choice": false,
"title": "How old are you?",
"form": 1,
"order": 5,
"is_required": false,
"help_text": ""
},
"model": "applications.question"
},
{
"pk": 6,
"fields": {
"question_type": "choices",
"choices": "Mac OS X; Windows; Linux",
"is_multiple_choice": true,
"title": "Which operating system do you use?",
"form": 1,
"order": 6,
"is_required": true,
"help_text": ""
},
"model": "applications.question"
},
{
"pk": 7,
"fields": {
"question_type": "choices",
"choices": "I'm a total beginner, I don't know anything about it; I've tried some HTML or CSS before; I've tried some JavaScript before; I've done a few lessons of Python; I've built a website before; I work as a programmer",
"is_multiple_choice": true,
"title": "What is your current level of experience with programming?",
"form": 1,
"order": 7,
"is_required": true,
"help_text": ""
},
"model": "applications.question"
},
{
"pk": 8,
"fields": {
"question_type": "text",
"choices": "",
"is_multiple_choice": false,
"title": "If you checked anything other than beginner, could you tell us a bit more about your programming knowledge?",
"form": 1,
"order": 8,
"is_required": false,
"help_text": ""
},
"model": "applications.question"
},
{
"pk": 9,
"fields": {
"question_type": "text",
"choices": "",
"is_multiple_choice": false,
"title": "What is your current occupation?",
"form": 1,
"order": 9,
"is_required": true,
"help_text": "What is your current job? Are you a student?"
},
"model": "applications.question"
},
{
"pk": 10,
"fields": {
"question_type": "text",
"choices": "",
"is_multiple_choice": false,
"title": "Why do you want to attend the workshop?",
"form": 1,
"order": 10,
"is_required": true,
"help_text": "Tell us about your motivations and aspirations."
},
"model": "applications.question"
},
{
"pk": 11,
"fields": {
"question_type": "text",
"choices": "",
"is_multiple_choice": false,
"title": "How are you planning to share what you've learnt with others?",
"form": 1,
"order": 11,
"is_required": false,
"help_text": "Django Girls is a volunteer-run organisation and we look for people who are active and can help us help more women get into the field. We want you to share what you learn at the workshop with others in different ways: by organising a Django Girls event in your city, talking about Django Girls on your local meetups, writing a blog or simply teaching your friends."
},
"model": "applications.question"
},
{
"pk": 12,
"fields": {
"question_type": "choices",
"choices": "Facebook; Twitter; From a friend; PyLadies",
"is_multiple_choice": true,
"title": "How did you hear about Django Girls?",
"form": 1,
"order": 12,
"is_required": false,
"help_text": "Django Girls is a volunteer-run organisation and we look for people who are active and can help us help more women get into the field. We want you to share what you learn at the workshop with others in different ways: by organising a Django Girls event in your city, talking about Django Girls on your local meetups, writing a blog or simply teaching your friends."
},
"model": "applications.question"
},
{
"pk": 13,
"fields": {
"question_type": "choices",
"choices": "I've read and understood the Django Girls Code of Conduct",
"is_multiple_choice": true,
"title": "It is important that all attendees comply with the <a href='/pages/coc/'>Django Girls Code of Conduct</a>",
"form": 1,
"order": 13,
"is_required": true,
"help_text": ""
},
"model": "applications.question"
},
{
"pk": 1,
"fields": {
"email": "[email protected]",
"rsvp_no_code": null,
"state": "submitted",
"created": "2015-11-07T12:01:00.420Z",
"rsvp_status": "waiting",
"form": 1,
"number": 1,
"newsletter_optin": true,
"rsvp_yes_code": null
},
"model": "applications.application"
},
{
"pk": 1,
"fields": {
"answer": "22",
"question": 5,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 2,
"fields": {
"answer": "Facebook",
"question": 12,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 3,
"fields": {
"answer": "I have done a simple course on coursera.",
"question": 8,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 4,
"fields": {
"answer": "333444333",
"question": 3,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 5,
"fields": {
"answer": "Emma Foobar",
"question": 1,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 6,
"fields": {
"answer": "I've read and understood the Django Girls Code of Conduct",
"question": 13,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 7,
"fields": {
"answer": " Windows",
"question": 6,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 8,
"fields": {
"answer": "Amsterdam, Netherlands",
"question": 4,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 9,
"fields": {
"answer": "I am a stay at home mom.",
"question": 9,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 10,
"fields": {
"answer": "I would love to create an event for other moms and create a startup for future moms.",
"question": 11,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 11,
"fields": {
"answer": " I've tried some HTML or CSS before, I've done a few lessons of Python",
"question": 7,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 12,
"fields": {
"answer": "I would totally love to start programming!",
"question": 10,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 13,
"fields": {
"answer": "[email protected]",
"question": 2,
"application": 1
},
"model": "applications.answer"
},
{
"pk": 1,
"fields": {
"content_type": 1,
"name": "Can add content type",
"codename": "add_contenttype"
},
"model": "auth.permission"
},
{
"pk": 2,
"fields": {
"content_type": 1,
"name": "Can change content type",
"codename": "change_contenttype"
},
"model": "auth.permission"
},
{
"pk": 3,
"fields": {
"content_type": 1,
"name": "Can delete content type",
"codename": "delete_contenttype"
},
"model": "auth.permission"
},
{
"pk": 4,
"fields": {
"content_type": 2,
"name": "Can add group",
"codename": "add_group"
},
"model": "auth.permission"
},
{
"pk": 5,
"fields": {
"content_type": 2,
"name": "Can change group",
"codename": "change_group"
},
"model": "auth.permission"
},
{
"pk": 6,
"fields": {
"content_type": 2,
"name": "Can delete group",
"codename": "delete_group"
},
"model": "auth.permission"
},
{
"pk": 7,
"fields": {
"content_type": 3,
"name": "Can add permission",
"codename": "add_permission"
},
"model": "auth.permission"
},
{
"pk": 8,
"fields": {
"content_type": 3,
"name": "Can change permission",
"codename": "change_permission"
},
"model": "auth.permission"
},
{
"pk": 9,
"fields": {
"content_type": 3,
"name": "Can delete permission",
"codename": "delete_permission"
},
"model": "auth.permission"
},
{
"pk": 10,
"fields": {
"content_type": 4,
"name": "Can add story",
"codename": "add_story"
},
"model": "auth.permission"
},
{
"pk": 11,
"fields": {
"content_type": 4,
"name": "Can change story",
"codename": "change_story"
},
"model": "auth.permission"
},
{
"pk": 12,
"fields": {
"content_type": 4,
"name": "Can delete story",
"codename": "delete_story"
},
"model": "auth.permission"
},
{
"pk": 13,
"fields": {
"content_type": 5,
"name": "Can add event",
"codename": "add_event"
},
"model": "auth.permission"
},
{
"pk": 14,
"fields": {
"content_type": 5,
"name": "Can change event",
"codename": "change_event"
},
"model": "auth.permission"
},
{
"pk": 15,
"fields": {
"content_type": 5,
"name": "Can delete event",
"codename": "delete_event"
},
"model": "auth.permission"
},
{
"pk": 16,
"fields": {
"content_type": 6,
"name": "Can add Website",
"codename": "add_eventpage"
},
"model": "auth.permission"
},
{
"pk": 17,
"fields": {
"content_type": 6,
"name": "Can change Website",
"codename": "change_eventpage"
},
"model": "auth.permission"
},
{
"pk": 18,
"fields": {
"content_type": 6,
"name": "Can delete Website",
"codename": "delete_eventpage"
},
"model": "auth.permission"
},
{
"pk": 19,
"fields": {
"content_type": 7,
"name": "Can add Organizer",
"codename": "add_user"
},
"model": "auth.permission"
},
{
"pk": 20,
"fields": {
"content_type": 7,
"name": "Can change Organizer",
"codename": "change_user"
},
"model": "auth.permission"
},
{
"pk": 21,
"fields": {
"content_type": 7,
"name": "Can delete Organizer",
"codename": "delete_user"
},
"model": "auth.permission"
},
{
"pk": 22,
"fields": {
"content_type": 8,
"name": "Can add Website Content",
"codename": "add_eventpagecontent"
},
"model": "auth.permission"
},
{
"pk": 23,
"fields": {
"content_type": 8,
"name": "Can change Website Content",
"codename": "change_eventpagecontent"
},
"model": "auth.permission"
},
{
"pk": 24,
"fields": {
"content_type": 8,
"name": "Can delete Website Content",
"codename": "delete_eventpagecontent"
},
"model": "auth.permission"
},
{
"pk": 25,
"fields": {
"content_type": 9,
"name": "Can add sponsor",
"codename": "add_sponsor"
},
"model": "auth.permission"
},
{
"pk": 26,
"fields": {
"content_type": 9,
"name": "Can change sponsor",
"codename": "change_sponsor"
},
"model": "auth.permission"
},
{
"pk": 27,
"fields": {
"content_type": 9,
"name": "Can delete sponsor",
"codename": "delete_sponsor"
},
"model": "auth.permission"
},
{
"pk": 28,
"fields": {
"content_type": 10,
"name": "Can add postmortem",
"codename": "add_postmortem"
},
"model": "auth.permission"
},
{
"pk": 29,
"fields": {
"content_type": 10,
"name": "Can change postmortem",
"codename": "change_postmortem"
},
"model": "auth.permission"
},
{
"pk": 30,
"fields": {
"content_type": 10,
"name": "Can delete postmortem",
"codename": "delete_postmortem"
},
"model": "auth.permission"
},
{
"pk": 31,
"fields": {
"content_type": 11,
"name": "Can add Website Menu",
"codename": "add_eventpagemenu"
},
"model": "auth.permission"
},
{
"pk": 32,
"fields": {
"content_type": 11,
"name": "Can change Website Menu",
"codename": "change_eventpagemenu"
},
"model": "auth.permission"
},
{
"pk": 33,
"fields": {
"content_type": 11,
"name": "Can delete Website Menu",
"codename": "delete_eventpagemenu"
},
"model": "auth.permission"
},
{
"pk": 34,
"fields": {
"content_type": 12,
"name": "Can add coach",
"codename": "add_coach"
},
"model": "auth.permission"
},
{
"pk": 35,
"fields": {
"content_type": 12,
"name": "Can change coach",
"codename": "change_coach"
},
"model": "auth.permission"
},
{
"pk": 36,
"fields": {
"content_type": 12,
"name": "Can delete coach",
"codename": "delete_coach"
},
"model": "auth.permission"
},
{
"pk": 37,
"fields": {
"content_type": 13,
"name": "Can add log entry",
"codename": "add_logentry"
},
"model": "auth.permission"
},
{
"pk": 38,
"fields": {
"content_type": 13,
"name": "Can change log entry",
"codename": "change_logentry"
},
"model": "auth.permission"
},
{
"pk": 39,
"fields": {
"content_type": 13,
"name": "Can delete log entry",
"codename": "delete_logentry"
},
"model": "auth.permission"
},
{