-
Notifications
You must be signed in to change notification settings - Fork 3
/
db.json
3833 lines (3833 loc) · 101 KB
/
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
[
{
"model": "auth.user",
"pk": 1,
"fields": {
"password": "pbkdf2_sha256$36000$saoUYFLhpZot$7T24vUNWsZoNGNJTKzVqraTn7Bp2EPUt0NUJ/7hYd7Q=",
"last_login": null,
"is_superuser": true,
"username": "depak_bharti",
"first_name": "",
"last_name": "",
"email": "deepakbharti823@gmail.com",
"is_staff": true,
"is_active": true,
"date_joined": "2017-12-10T18:05:22.570Z",
"groups": [],
"user_permissions": []
}
},
{
"model": "auth.user",
"pk": 2,
"fields": {
"password": "pbkdf2_sha256$36000$Ld691NYwJJ8g$ma791QbJlKq+fA1sTQO36SckVHwz4GrKPI1n6WVNvMA=",
"last_login": null,
"is_superuser": true,
"username": "7275036250",
"first_name": "",
"last_name": "",
"email": "deepakbharti823@gmail.com",
"is_staff": true,
"is_active": true,
"date_joined": "2017-12-10T18:06:55.933Z",
"groups": [],
"user_permissions": []
}
},
{
"model": "auth.user",
"pk": 3,
"fields": {
"password": "pbkdf2_sha256$36000$UwPe788mPn8d$KFGQ53msio01owxt4QXF7qtTmp6GuQJj98RodImpazg=",
"last_login": "2017-12-10T18:08:40.273Z",
"is_superuser": false,
"username": "7905915393",
"first_name": "Deepak",
"last_name": "Bharti",
"email": "",
"is_staff": false,
"is_active": true,
"date_joined": "2017-12-10T18:08:40.047Z",
"groups": [],
"user_permissions": []
}
},
{
"model": "auth.user",
"pk": 4,
"fields": {
"password": "pbkdf2_sha256$36000$jbOpFVMtARN7$67YAhop30BwDjVu8ZcQOGZOCpfPPoAIfYXJ9qtWGPxs=",
"last_login": "2017-12-11T05:35:01.226Z",
"is_superuser": true,
"username": "root",
"first_name": "Deepak ",
"last_name": "Bharti",
"email": "deepakbharti823@gmail.com",
"is_staff": true,
"is_active": true,
"date_joined": "2017-12-10T18:09:36.893Z",
"groups": [],
"user_permissions": []
}
},
{
"model": "auth.user",
"pk": 5,
"fields": {
"password": "pbkdf2_sha256$36000$UzJC2COzzM7D$NajCx/dKYwVbKhDbPe9Wp0k+OkUduQQfXRR0S1so+bs=",
"last_login": "2017-12-12T07:24:53.198Z",
"is_superuser": true,
"username": "suraj",
"first_name": "",
"last_name": "",
"email": "surajmall874@gmail.com",
"is_staff": true,
"is_active": true,
"date_joined": "2017-12-11T07:39:09.600Z",
"groups": [],
"user_permissions": []
}
},
{
"model": "sessions.session",
"pk": "5vf6k4ymq9svrnjrtqed62sbwhot7gom",
"fields": {
"session_data": "YTNhMjEwMDYzZWI5MGE3MTZlNTE5NzM0NGM4YjU0Yjk0NmMyODRlNTp7Il9hdXRoX3VzZXJfaWQiOiI0IiwiX2F1dGhfdXNlcl9oYXNoIjoiNGQ2ZDM5MzA1YzNiNGY5ZGEyZDY5YTJiOTE3MGQwZDlhMDM1YjM4NSIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=",
"expire_date": "2017-12-24T18:20:46.764Z"
}
},
{
"model": "sessions.session",
"pk": "7hnklbtysp9907yii6gsbhka2ly7n0ak",
"fields": {
"session_data": "NjhiNDEzMWVhN2Q4OTk5OTk2MzM2NDNhYWMyODFkNmFlOWQ5Mzk5YTp7Il9hdXRoX3VzZXJfaGFzaCI6IjI1ZDMxZGE1MzI1NzQ1ZWFhY2M2YjIyMWZlNzM0YWVkODE0ZWRiYjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1In0=",
"expire_date": "2017-12-26T05:45:21.933Z"
}
},
{
"model": "sessions.session",
"pk": "98l7k0djbv0tv90pfbgqqnrzf6votoxd",
"fields": {
"session_data": "NjhiNDEzMWVhN2Q4OTk5OTk2MzM2NDNhYWMyODFkNmFlOWQ5Mzk5YTp7Il9hdXRoX3VzZXJfaGFzaCI6IjI1ZDMxZGE1MzI1NzQ1ZWFhY2M2YjIyMWZlNzM0YWVkODE0ZWRiYjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI1In0=",
"expire_date": "2017-12-26T07:24:53.336Z"
}
},
{
"model": "sessions.session",
"pk": "crauq7n9g74rrm8nequgtrpd4jzzq76m",
"fields": {
"session_data": "OWVhZDNiMTA3NzhiN2EzOWVhMDFjZjE0ZmM4MzhkNGJiNjQ4NWY2NDp7Il9hdXRoX3VzZXJfaGFzaCI6IjRkNmQzOTMwNWMzYjRmOWRhMmQ2OWEyYjkxNzBkMGQ5YTAzNWIzODUiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiI0In0=",
"expire_date": "2017-12-25T05:35:01.363Z"
}
},
{
"model": "TourismPlaces.image",
"pk": 17,
"fields": {
"tourism_place": 22,
"name": "Anand bhawan front",
"slug": "anand-bhawan-front",
"image": "place_pictures/anand-bhawan/WhatsApp_Image_2017-12-04_at_9.15.33_PM_1.jpeg",
"height_field": 792,
"width_field": 1188,
"description": "Front view of Anand Bhawan ."
}
},
{
"model": "TourismPlaces.image",
"pk": 18,
"fields": {
"tourism_place": 8,
"name": "Allahabad fort sky",
"slug": "allahabad-fort-sky",
"image": "place_pictures/allahabad-fort-patalpuri-temple/WhatsApp_Image_2017-12-04_at_9.15.42_PM.jpeg",
"height_field": 752,
"width_field": 1280,
"description": "Sky view of allahabad fort ."
}
},
{
"model": "TourismPlaces.image",
"pk": 19,
"fields": {
"tourism_place": 19,
"name": "Sangam front",
"slug": "sangam-front",
"image": "place_pictures/triveni-sangam/Picture6.jpg",
"height_field": 998,
"width_field": 1502,
"description": "Triveni Sangam morning view from the Ganga River ."
}
},
{
"model": "TourismPlaces.image",
"pk": 20,
"fields": {
"tourism_place": 19,
"name": "Sanagam 2",
"slug": "sanagam-2",
"image": "place_pictures/triveni-sangam/Picture4.jpg",
"height_field": 1002,
"width_field": 1502,
"description": "Birds flying over the Triveni Ganga"
}
},
{
"model": "TourismPlaces.image",
"pk": 21,
"fields": {
"tourism_place": 19,
"name": "Sanagam 3",
"slug": "sanagam-3",
"image": "place_pictures/triveni-sangam/Picture1.jpg",
"height_field": 1002,
"width_field": 1502,
"description": "Evening View of allahabad"
}
},
{
"model": "TourismPlaces.image",
"pk": 22,
"fields": {
"tourism_place": 19,
"name": "Sanagam 4",
"slug": "sanagam-4",
"image": "place_pictures/triveni-sangam/DSC_3199-2-3.jpg",
"height_field": 3102,
"width_field": 4810,
"description": "Bird flying over the Ganga ."
}
},
{
"model": "TourismPlaces.image",
"pk": 23,
"fields": {
"tourism_place": 19,
"name": "Sanagam 5",
"slug": "sanagam-5",
"image": "place_pictures/triveni-sangam/DSC_0420.JPG",
"height_field": 4000,
"width_field": 6000,
"description": "Boats in Triveni Sangam ."
}
},
{
"model": "TourismPlaces.image",
"pk": 24,
"fields": {
"tourism_place": 19,
"name": "Sanagam 6",
"slug": "sanagam-6",
"image": "place_pictures/triveni-sangam/DSC_0446.JPG",
"height_field": 3747,
"width_field": 6000,
"description": "Triveni Sangam"
}
},
{
"model": "TourismPlaces.image",
"pk": 25,
"fields": {
"tourism_place": 19,
"name": "Sanagam 7",
"slug": "sanagam-7",
"image": "place_pictures/triveni-sangam/DSC_0446_fwLyHZa.JPG",
"height_field": 3747,
"width_field": 6000,
"description": "Triveni Sangam"
}
},
{
"model": "TourismPlaces.image",
"pk": 26,
"fields": {
"tourism_place": 19,
"name": "Sanagam 8",
"slug": "sanagam-8",
"image": "place_pictures/triveni-sangam/DSC_0048.JPG",
"height_field": 3892,
"width_field": 6000,
"description": "Temporary pool on Triveni Sangam"
}
},
{
"model": "TourismPlaces.image",
"pk": 27,
"fields": {
"tourism_place": 19,
"name": "Sanagam 9",
"slug": "sanagam-9",
"image": "place_pictures/triveni-sangam/DSC_0201.JPG",
"height_field": 4000,
"width_field": 6000,
"description": "sun set time at Triveni Sangam ."
}
},
{
"model": "TourismPlaces.image",
"pk": 28,
"fields": {
"tourism_place": 19,
"name": "Sanagam 10",
"slug": "sanagam-10",
"image": "place_pictures/triveni-sangam/DSC_0367.JPG",
"height_field": 4000,
"width_field": 6000,
"description": "Children in the Form of God at Triveni Sangam"
}
},
{
"model": "TourismPlaces.image",
"pk": 30,
"fields": {
"tourism_place": 8,
"name": "fort 2",
"slug": "fort-2",
"image": "place_pictures/allahabad-fort-patalpuri-temple/2.jpeg",
"height_field": 853,
"width_field": 1280,
"description": "Allahabad Fort's External View from the River ."
}
},
{
"model": "TourismPlaces.image",
"pk": 31,
"fields": {
"tourism_place": 8,
"name": "fort 3",
"slug": "fort-3",
"image": "place_pictures/allahabad-fort-patalpuri-temple/fort_3.jpg",
"height_field": 340,
"width_field": 760,
"description": "Allahabad Fort"
}
},
{
"model": "TourismPlaces.image",
"pk": 32,
"fields": {
"tourism_place": 9,
"name": "hanuman front",
"slug": "hanuman-front",
"image": "place_pictures/lord-hanuman-mandir/badehanuman.jpg",
"height_field": 397,
"width_field": 612,
"description": "Internal view of Bade Hanuman Temple taken by : source - http://www.gettyimages.in"
}
},
{
"model": "TourismPlaces.image",
"pk": 33,
"fields": {
"tourism_place": 9,
"name": "hanuman 1",
"slug": "hanuman-1",
"image": "place_pictures/lord-hanuman-mandir/hanuman.jpg",
"height_field": 459,
"width_field": 832,
"description": "Front view of Hanuman Temple taken by source - http://www.templeadvisor.com/temples-in-india/hindu-temples/allahabad-hanuman-temple"
}
},
{
"model": "TourismPlaces.image",
"pk": 34,
"fields": {
"tourism_place": 9,
"name": "hanuman 2",
"slug": "hanuman-2",
"image": "place_pictures/lord-hanuman-mandir/sri-hanuman-temple_1414663405.jpg",
"height_field": 554,
"width_field": 832,
"description": "Hanuman Temple during the flood take by source - http://www.templeadvisor.com/temples-in-india/hindu-temples/allahabad-hanuman-temple"
}
},
{
"model": "TourismPlaces.image",
"pk": 35,
"fields": {
"tourism_place": 9,
"name": "hanuman 3",
"slug": "hanuman-3",
"image": "place_pictures/lord-hanuman-mandir/DSC_3344.jpg",
"height_field": 5743,
"width_field": 3504,
"description": "Idol of Lord Hanuman"
}
},
{
"model": "TourismPlaces.image",
"pk": 36,
"fields": {
"tourism_place": 12,
"name": "Mankameshwar front",
"slug": "mankameshwar-front",
"image": "place_pictures/mankameshwar-temple/DSC_0084.JPG",
"height_field": 4000,
"width_field": 6000,
"description": "Front Gate of Mankameshwar Temple , Allahabad"
}
},
{
"model": "TourismPlaces.image",
"pk": 37,
"fields": {
"tourism_place": 12,
"name": "Mankameshwar 1",
"slug": "mankameshwar-1",
"image": "place_pictures/mankameshwar-temple/DSC_0086.JPG",
"height_field": 4000,
"width_field": 6000,
"description": "Lord Hanuman inside the Mankameshwar Temple"
}
},
{
"model": "TourismPlaces.image",
"pk": 38,
"fields": {
"tourism_place": 25,
"name": "Someshwar front",
"slug": "someshwar-front",
"image": "place_pictures/someshwar-mahadev-temple/IMG-20170626-WA0008.jpg",
"height_field": 810,
"width_field": 1080,
"description": "Someshwar Mahadev Temple"
}
},
{
"model": "TourismPlaces.image",
"pk": 39,
"fields": {
"tourism_place": 25,
"name": "Someshwar 1",
"slug": "someshwar-1",
"image": "place_pictures/someshwar-mahadev-temple/FB_IMG_1494901035452.jpg",
"height_field": 720,
"width_field": 960,
"description": "Decorated Someshwar Mahadev Temple"
}
},
{
"model": "TourismPlaces.image",
"pk": 40,
"fields": {
"tourism_place": 25,
"name": "Someshwar 2",
"slug": "someshwar-2",
"image": "place_pictures/someshwar-mahadev-temple/DSC_3275.jpg",
"height_field": 4000,
"width_field": 6000,
"description": "Front Gate of Someshwar Mahadev Temple"
}
},
{
"model": "TourismPlaces.image",
"pk": 41,
"fields": {
"tourism_place": 20,
"name": "Khusro front",
"slug": "khusro-front",
"image": "place_pictures/khusro-bagh/khusro.jpg",
"height_field": 520,
"width_field": 950,
"description": "Khusro Bagh side view"
}
},
{
"model": "TourismPlaces.image",
"pk": 42,
"fields": {
"tourism_place": 20,
"name": "Khusro1",
"slug": "khusro1",
"image": "place_pictures/khusro-bagh/DSC_0250-2.JPG",
"height_field": 4000,
"width_field": 6000,
"description": "Khusro Bagh Front View"
}
},
{
"model": "TourismPlaces.image",
"pk": 43,
"fields": {
"tourism_place": 20,
"name": "Khusro 2",
"slug": "khusro-2",
"image": "place_pictures/khusro-bagh/khusro_2.jpg",
"height_field": 750,
"width_field": 1000,
"description": "Side View of Khusro Bagh Allahabad"
}
},
{
"model": "TourismPlaces.image",
"pk": 44,
"fields": {
"tourism_place": 20,
"name": "Khusro 3",
"slug": "khusro-3",
"image": "place_pictures/khusro-bagh/DSC_0282.JPG",
"height_field": 4000,
"width_field": 6000,
"description": "Khusro Bagh"
}
},
{
"model": "TourismPlaces.image",
"pk": 45,
"fields": {
"tourism_place": 20,
"name": "Khusro 4",
"slug": "khusro-4",
"image": "place_pictures/khusro-bagh/DSC_3581.jpg",
"height_field": 5154,
"width_field": 3937,
"description": "Front View of Khusro Bagh in Morning"
}
},
{
"model": "TourismPlaces.image",
"pk": 46,
"fields": {
"tourism_place": 26,
"name": "naini front",
"slug": "naini-front",
"image": "place_pictures/new-yamuna-bridge/10.jpeg",
"height_field": 853,
"width_field": 1280,
"description": "New Yamuna Bridge in Evening Time"
}
},
{
"model": "TourismPlaces.image",
"pk": 47,
"fields": {
"tourism_place": 26,
"name": "naini 2",
"slug": "naini-2",
"image": "place_pictures/new-yamuna-bridge/DSC_2916.jpg",
"height_field": 4000,
"width_field": 5854,
"description": "New Yamuna Bridge in Night ."
}
},
{
"model": "TourismPlaces.image",
"pk": 48,
"fields": {
"tourism_place": 26,
"name": "naini 3",
"slug": "naini-3",
"image": "place_pictures/new-yamuna-bridge/DSC_0174-HDR.jpg",
"height_field": 3893,
"width_field": 5840,
"description": "New Yamuna Bridge Side View"
}
},
{
"model": "TourismPlaces.image",
"pk": 49,
"fields": {
"tourism_place": 26,
"name": "naini 4",
"slug": "naini-4",
"image": "place_pictures/new-yamuna-bridge/DSC_0159-HDR.jpg",
"height_field": 3449,
"width_field": 5173,
"description": "Bottom view of New Yamuna Bridge"
}
},
{
"model": "TourismPlaces.image",
"pk": 50,
"fields": {
"tourism_place": 23,
"name": "Jawahar Planetarium front",
"slug": "jawahar-planetarium-front",
"image": "place_pictures/jawahar-planetarium/jawahar1.jpg",
"height_field": 1021,
"width_field": 1200,
"description": "Jawahar Planetarium"
}
},
{
"model": "TourismPlaces.image",
"pk": 51,
"fields": {
"tourism_place": 27,
"name": "Chandra Shekhar front",
"slug": "chandra-shekhar-front",
"image": "place_pictures/chandra-shekhar-azad-park/DSC_2782.jpg",
"height_field": 3937,
"width_field": 5833,
"description": "Chandrasekhar Azad Park"
}
},
{
"model": "TourismPlaces.image",
"pk": 52,
"fields": {
"tourism_place": 27,
"name": "Chandra Shekhar 1",
"slug": "chandra-shekhar-1",
"image": "place_pictures/chandra-shekhar-azad-park/1.jpeg",
"height_field": 800,
"width_field": 1200,
"description": "Sky view of Chandra shekhar Azad Park"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 8,
"fields": {
"video": null,
"image": 18,
"name": "Allahabad Fort",
"slug": "allahabad-fort-patalpuri-temple",
"latitude": null,
"longitude": null,
"place_type": "heritage, entertainment",
"location": "Allahabad Fort, Baand Marg, Allahabad fort, Allahabad, Uttar Pradesh",
"description": "The massive fort built by Emperor Akbar in 1583 A.D. stands on the banks of the Yamuna, close to the confluence site. In its prime, the fort was unrivalled for its design, construction and craftsmanship.\r\nThis huge, majestic fort has three magnificent galleries flanked by high towers. At present it is used by the army and only a limited area is open to visitors.\r\n\r\nThe magnificent outer wall is intact and rises above the water\u2019s edge. Visitors are allowed to see the Ashokan Pillar and Saraswati Koop, a well said to be the source of the Saraswati river and Jodhabai Palace. The gigantic Ashoka pillar of polished sandstone stands 10.6 meters high, dating back to 232 B.C. The pillar has several edicts and a Persian inscription of Emperor Jahangir inscripted on it, commemorating his accession to the throne. - - - - - - - - - - - Source - http://uptourism.gov.in - - - - - - - - - \r\nfor more information visit - http://jazztravels.com/places-to-visit-in-allahabad/"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 9,
"fields": {
"video": null,
"image": 32,
"name": "Lord Hanuman Mandir",
"slug": "lord-hanuman-mandir",
"latitude": null,
"longitude": null,
"place_type": null,
"location": "Near Triveni Sangam Allahabad-211004",
"description": "Near the Sangam, this temple is unique for its huge supine idol of Lord Hanuman in North India.Here the big idol of Lord Hanuman is seen in a reclining posture. When the Ganga is in spate, this temple gets submerged.- - - - - -source - http://uptourism.gov.in - - - - - - - \r\nThe Bade Hanumanji Mandir is a well-known temple in Allahabad. It has a large 20 feet long and 8 feet wide idol of Lord Hanuman in a reclining position. It is believed that the water of the river Ganges rises to touch the feet of the Lord Hanuman\u2019s idol. Being so large, the idol here is known as Sri Bade Hanuman of Prayag. A huge number of devotees come to Allahabad to visit this holy structure every year. It is said that in the past, the city had a rich trader who did not have a child. He made the massive structure and decided to bathe it at different places of pilgrimage. When he reached Prayag ( the erstwhile name for Allahabad), he dreamt at night that if he left it here, all his dreams would be fulfilled. His dreams were fulfilled and a son was born to him later. The submerged idol has ever since a part of Allahabad's heritage. - - - - - - - - - -source - https://www.yatra.com/india-tourism/attractions-in-allahabad/bade-hanuman-jee-temple , For more information - http://www.templeadvisor.com/temples-in-india/hindu-temples/allahabad-hanuman-temple"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 10,
"fields": {
"video": null,
"image": null,
"name": "Patalpuri Temple",
"slug": "patalpuri-temple",
"latitude": null,
"longitude": null,
"place_type": "spiritual",
"location": null,
"description": "Within this underground temple, inside the fort, lies the Akshaya Vat - or the immortal tree. Believed to have been visited by Lord Rama . the temple was also seen by the famous Chinese traveler and writer Hiuen Tsang during his visit to this place."
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 11,
"fields": {
"video": null,
"image": null,
"name": "Aadi Shankar Viman Mandapam",
"slug": "aadi-shankar-viman-mandapam",
"latitude": null,
"longitude": null,
"place_type": "spiritual",
"location": null,
"description": "This 130 feet high temple with four floors built in South Indian style has the idols of Kumaril Bhatt, Jagatguru Adi Shankaracharya, Kamakshi Devi , Tirupati Balaji and Yogsahastra Sahastrayoga Linga ."
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 12,
"fields": {
"video": null,
"image": 36,
"name": "Mankameshwar Temple",
"slug": "mankameshwar-temple",
"latitude": "25.4307278000",
"longitude": "81.8640350000",
"place_type": "spiritual",
"location": "Himmat Ganj, Kydgang, Allahabad, Uttar Pradesh 211003",
"description": "This ancient Lord Shiva Temple is picturesquely located near Saraswati Ghat on the bank of the river Yamuna . ----- source - http://uptourism.gov.in/ ------- For more infromation visit - http://www.allahabadonline.in/city-guide/mankameshwar-temple-allahabad"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 15,
"fields": {
"video": null,
"image": null,
"name": "Aalop Shankari Shaktipeetha",
"slug": "aalop-shankari-shaktipeetha",
"latitude": null,
"longitude": null,
"place_type": "spiritual",
"location": "Alopi Bagh, Allahabad, Uttar Pradesh 211006",
"description": "Alopi Devi Mandir is a temple situated in Alopibagh in Allahabad . It is near to the holy Sangam, or confluence, where the rivers Ganges, Yamuna and the legendary Sarasvati meet. Kumbh Mela is near to this place."
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 16,
"fields": {
"video": null,
"image": null,
"name": "Roop Gaudiya Matha",
"slug": "roop-gaudiya-matha",
"latitude": null,
"longitude": null,
"place_type": "spiritual",
"location": "Near Phalwan Veer Baba, MG Marg, Tula Ram Bagh, Allahabad, Uttar Pradesh 211006",
"description": "Srila Prabhupada laid the foundation stone on 30th Oct., 1929 of Gaudiya Math on a vast land situated at the junction point of G.T. Road and Cunning Road near the Tribeni Sangam."
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 17,
"fields": {
"video": null,
"image": null,
"name": "Ganga Gallery",
"slug": "ganga-gallery",
"latitude": null,
"longitude": null,
"place_type": "spiritual,heritage,monument",
"location": null,
"description": "The National Academy of Science, India established the Ganga Gallery in Allahabad to make people aware about the conservation and restoration of the Ganga."
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 19,
"fields": {
"video": null,
"image": 19,
"name": "Triveni Sangam",
"slug": "triveni-sangam",
"latitude": "25.4277304000",
"longitude": "81.8837431000",
"place_type": "spiritual,entertainment",
"location": null,
"description": "This is the point where the brown water of the Ganga meets the green water of the Yamuna, along with the mythical Saraswati, which remains unseen but believed to run underground. Religious Importance - Wide flood plains and muddy banks protrude towards the sacred Sangam. At the mid-river point priests perch on small platforms to perform puja and assist the devout in their ritual ablutions in the shallow waters. A dip in the Sangam water is supposed to be the holiest of the holy pilgrimages for the devout Hindu. Boats to the Sangam can be rented by pilgrims and tourists alike at the ghat near the fort.\r\n\r\nIt is during the Kumbh/Ardh Kumbh that the Sangam truly comes alive, attracting the devout from all across the country. \r\n \r\n source - http://uptourism.gov.in and wikipedia"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 20,
"fields": {
"video": null,
"image": 44,
"name": "Khusro Bagh",
"slug": "khusro-bagh",
"latitude": "25.4423006000",
"longitude": "81.8188424000",
"place_type": "entertainment,heritage,monument",
"location": "Lukarganj, Allahabad, Uttar Pradesh 211016",
"description": "Khusro Bagh is a large historical garden, in which tombs of Prince Khusro, the eldest son of Emperor Jahangir and Sultan Begum are located. The three sandstone mausoleums within this walled garden, represent an exquisite example of Mughal architecture. The design of its main entrance, the surrounding gardens and the three-tier tomb of Sultan Begum has been attributed to Aqa Reza, Jahangir\u2019s principal court artist.\r\n\r\nThe tomb has a large chhatri that surmounts the plinth and inscriptions that adorn her tomb. Next to the Begum's tomb is the tomb of Khusrau's sister, Nithar. However Nithar's mausoleum is empty and it does not contain her tomb within it. Architecturally, this is the most elaborate of the three. It lies on an elevated platform and is adorned with panels depicting the scalloped arch motif. Within the plinth are rooms, whose ceilings have been elaborately painted with stars in concentric circles. The central room has on its walls floral decorations depicting Persian cypresses, wine vessels, flowers and plants.\r\n\r\nThe tomb of Khusro is the last of the three tombs. Khusro was first imprisoned within the garden after he rebelled against his father Jahangir. He was killed in an attempt to escape on the orders of Khusro's brother and Jahangir's third son Khurram, who later became the Emperor Shah Jahan.\r\n- - - - source - http://uptourism.gov.in/pages/top/experience/khusro-bagh-explore - - - -"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 21,
"fields": {
"video": null,
"image": null,
"name": "Swaraj Bhawan",
"slug": "swaraj-bhawan",
"latitude": null,
"longitude": null,
"place_type": "entertainment,heritage,museum",
"location": "Swaraj Bhawan Road, Tagore Town, Allahabad, Uttar Pradesh 211002",
"description": "It is situated near Anand Bhawan .The old Anand Bhawan, was donated in 1930 to the Nation by Moti Lal Nehru, to be used as the headquarters of the Congress Committee . Closed on Mondays."
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 22,
"fields": {
"video": null,
"image": 17,
"name": "Anand Bhawan",
"slug": "anand-bhawan",
"latitude": null,
"longitude": null,
"place_type": "entertainment,heritage,museum",
"location": "Near Balson Chauraha, Allahabad - Faizabad Road, Allahabad, Uttar Pradesh 211001",
"description": "The erstwhile ancestral home of the Nehru family has been turned into a fine museum.The main building houses a museum which displays the memorabilia of the Nehru family . Closed on Mondays and Government holidays."
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 23,
"fields": {
"video": null,
"image": 50,
"name": "Jawahar Planetarium",
"slug": "jawahar-planetarium",
"latitude": null,
"longitude": null,
"place_type": "entertainment,museum,heritage",
"location": "Tagore Town, Allahabad, Uttar Pradesh 211002",
"description": "For a celestial trip of the scientific kind, visit the Planetarium.Jawahar Planetarium takes one on a celestial journey which makes the eyes twinkle like stars . The Jawahar Planetarium is located in the city of Allahabad in Uttar Pradesh, India. It was built in 1979 and is situated beside Anand Bhavan the former residence of the Nehru-Gandhi family and now a museum. It is managed by the 'Jawaharlal Nehru Memorial Fund' (estb. 1964), which has its headquarters at Teen Murti House, New Delhi.\r\nEach year, the prestigious 'Jawaharlal Nehru Memorial Lecture' is also held at the planetarium, organised under the auspices of Jawaharlal Nehru Memorial Fund on the birth anniversary of India's first prime minister, November 14 .\r\n Closed on Mondays and 4th Thursday of the month.\r\n \r\n source - https://en.wikipedia.org/wiki/Jawahar_Planetarium"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 24,
"fields": {
"video": null,
"image": null,
"name": "Bhardwaj Aashram",
"slug": "bhardwaj-aashram",
"latitude": null,
"longitude": null,
"place_type": "spiritual",
"location": "Colonelganj, Colnel Ganj, George Town, Allahabad, Uttar Pradesh 211002",
"description": "Bharadwaja rishi also spelled Bhardwaj was one of the greatest Hindu sages (Maharshis) descendant of rishi Angirasa, whose accomplishments are detailed in the Puranas. He is one of the Saptarshis (Seven Great Sages Rishi) in the present Manvantara; with others being Atri, Vashishtha, Vishvamitra, Gautama, Jamadagni, Kashyapa. Bharadwaja Barhaspatya is the progenitor of the Bharadwaja family and the family is attributed as the composers of Mandala 6 of the Rig Veda. Mandala 6 is known as the Bharadwaja Family Book as all its 75 hymns are composed by a member of this family over several centuries. He is believed to be a contemporary of King Bharata. Bharadwaja and his descendants were respected and powerful priests/rishis of several clans/dynasties of the Puru tribe, such as the Bharatas and the Panchalas. Bhardwaj is the upper most caste among all brahmins. \r\n source - http://www.prayagdarshan.com/bharadwaj-ashram.html"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 25,
"fields": {
"video": null,
"image": 38,
"name": "Someshwar Mahadev Temple",
"slug": "someshwar-mahadev-temple",
"latitude": null,
"longitude": null,
"place_type": "spiritual",
"location": null,
"description": "Triveni Sangam, a religious centre in Allahabad is the confluence of the rivers the Ganga, the Yamuna and the mythical Saraswathi. This ancient Someshwar temple is also known as the Shivkoti Temple is located in this place.\r\n\r\nIn Naini village near Sangam on the banks of the River Yamuna opposite to Allahabad Fort. The Someshwar Mahadev temple is dedicated to lord Shiva. Here the lord is worshipped in the form of Ekadash Rudra, one of the seventeen forms of lord Shiva and is the most important of the eight gods of Prayag. Lord Moon has installed the idol here. There is also a small Hanuman temple. During the annual Magh Mela, Ardh Kumbh mela and Kumbh mela, the temple is visited by the many pilgrims.\r\n\r\nPilgrims consider Monday as auspicious day to pray to Someshwar Mahadev. It is built below the ground level inside the fort on the bank of the Yamuna. There is a long corridor and there are 44 idols in here with a Shivling in the center. It was renovated by Bajirao Peshwa in 1735, and some idols date back to 17th or 18th century. Legend has it that Lord Rama had come during his exile. - - - - source - http://www.templeadvisor.com/temples-in-india/hindu-temples/someshwar-mahadev-temple - - - - for more infromation visit - https://www.ftd.travel/someshwar-mahadev-temple-attraction-allahabad"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 26,
"fields": {
"video": null,
"image": 46,
"name": "New Yamuna Bridge",
"slug": "new-yamuna-bridge",
"latitude": null,
"longitude": null,
"place_type": "entertainment",
"location": null,
"description": "The New Yamuna Bridge is a cable-stayed bridge located in Allahabad . The bridge was constructed by the end of 2004 with the aim of minimizing the traffic over the Old Naini Bridge. The bridge runs North-South across the Yamuna river connecting the city of Allahabad to its neighborhood of Naini. The construction was consulted by COWI A/S, a Danish consulting company \r\n- - - - source - https://en.wikipedia.org/wiki/New_Yamuna_Bridge - - - \r\nOne of the oldest cities in India, Allahabad has witnessed an era of historic confluence and also is among the revered pilgrimage places in the country. Be it the magnanimous Allahabad Fort, the pious Triveni Sangam or the Chandrashekhar Azad Park, Allahabad has a long list of attractions for its visitors to explore. Yamuna Bridge is like a new feather in Allahabad\u2019s cap. The image speaks about the stupendous architecture of Yamuna Bridge. The view of the bridge during dawn and dusk is mesmerizing.\r\nAlso known as the Naini Bridge, the Yamuna Bridge is among India\u2019s longest cable-stayed bridges. It runs across the Yamuna River in the North-South direction, connecting Allahabad to the Naini district. It was constructed in the year 2004 to minimize the traffic congestions over the old Naini Bridge. The construction of the bridge was a joint responsibility of the Hindustan Construction Company and Hyundai Engineering and Construction. - - - - source - https://www.mapsofindia.com - - - -"
}
},
{
"model": "TourismPlaces.tourismplace",
"pk": 27,
"fields": {
"video": null,
"image": 51,
"name": "Chandra Shekhar Azad Park",
"slug": "chandra-shekhar-azad-park",
"latitude": null,
"longitude": null,
"place_type": "entertainment,heritage,monument",
"location": "Georgetown in Allahabad, India",
"description": "Chandrasekhar Azad Park (British colonial era Alfred Park and informally Company Bagh) is a public park in Allahabad. Built in 1870 to mark Prince Alfred's visit to the city, with an area of 133 acres, it is the biggest park in Allahabad.[2][3] It was renamed after freedom fighter Chandra Shekhar Azad, who sacrificed his life here, during the Indian independence struggle in 1931. Originally and still famously the park is known as Alfred Park.\r\n source - https://en.wikipedia.org/wiki/Alfred_Park \r\n for more infromation - https://www.happytrips.com/allahabad/chandrashekhar-azad-park/ps50353030.cms"
}
},
{
"model": "Users.profile",
"pk": 1,
"fields": {
"user": [
"depak_bharti"
],
"gender": null,
"image": "",
"height_field": 450,
"width_field": 350
}
},
{
"model": "Users.profile",
"pk": 2,
"fields": {
"user": [
"7275036250"
],
"gender": null,
"image": "",
"height_field": 450,
"width_field": 350
}
},
{
"model": "Users.profile",
"pk": 3,
"fields": {
"user": [
"7905915393"
],
"gender": null,
"image": "",
"height_field": 450,
"width_field": 350
}
},
{
"model": "Users.profile",
"pk": 4,
"fields": {
"user": [
"root"
],
"gender": null,
"image": "",
"height_field": 450,
"width_field": 350
}
},
{
"model": "Users.profile",
"pk": 5,
"fields": {
"user": [
"suraj"
],
"gender": null,
"image": "",
"height_field": 450,
"width_field": 350
}
},
{
"model": "admin.logentry",
"pk": 1,
"fields": {
"action_time": "2017-12-10T18:12:50.345Z",
"user": [
"root"
],
"content_type": [
"TourismPlaces",
"tourismplace"
],
"object_id": "1",
"object_repr": "Sangam",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 2,
"fields": {
"action_time": "2017-12-10T18:25:54.841Z",
"user": [
"root"
],
"content_type": [
"TourismPlaces",
"tourismplace"
],
"object_id": "1",
"object_repr": "Sangam",
"action_flag": 3,
"change_message": ""
}
},
{
"model": "admin.logentry",
"pk": 3,
"fields": {
"action_time": "2017-12-10T18:29:14.643Z",
"user": [
"root"
],
"content_type": [
"TourismPlaces",
"tourismplace"
],
"object_id": "2",
"object_repr": "Sangam",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 4,
"fields": {
"action_time": "2017-12-10T20:13:26.156Z",
"user": [
"root"
],
"content_type": [
"TourismPlaces",
"tourismplace"
],
"object_id": "2",
"object_repr": "Sangam",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"latitude\", \"longitude\", \"place_type\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 5,
"fields": {
"action_time": "2017-12-10T20:13:47.878Z",
"user": [
"root"
],
"content_type": [
"TourismPlaces",
"tourismplace"
],
"object_id": "2",
"object_repr": "Sangam",
"action_flag": 2,
"change_message": "[]"
}
},
{
"model": "admin.logentry",
"pk": 6,
"fields": {
"action_time": "2017-12-10T20:15:36.032Z",
"user": [
"root"
],
"content_type": [
"TourismPlaces",
"tourismplace"
],