-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.txt
2281 lines (1517 loc) · 68.4 KB
/
log.txt
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
commit 53c2dd7796faa8da7d7fa817238025264b62a950
Merge: f79cae0 f4e9a35
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 22:14:47 2022 +0100
Merge branch 'main' of https://github.com/UCLComputerScience/COMP0067_2022_Team6
commit f79cae08cef1a30359bbfd969929710f8f2d3139
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 22:14:43 2022 +0100
removed update to projects and admin manage events
commit f4e9a35c99ddaa77935d2875b531160092aad06a
Merge: 2df102e 33e63ec
Author: Yingbo Zhou <[email protected]>
Date: Mon Apr 11 22:13:37 2022 +0100
Merge pull request #68 from UCLComputerScience/tables
Update upload file
commit 33e63ec4bb65eaa4a8cc7cfacf7cf49849981777
Author: Yingbo Zhou <[email protected]>
Date: Mon Apr 11 22:12:29 2022 +0100
Update upload file
commit 2df102e20246962e9378bd031d481ce288965aaf
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 22:05:03 2022 +0100
remove trailing comma from admin manage events, and projects
commit a2d809fc957804b392d29c616f0ef67ce6be9e13
Merge: f02ea2b 0f9d986
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 21:34:09 2022 +0100
Merge pull request #67 from UCLComputerScience/update-event
updated events&fix footer for admin home
commit 0f9d9869e810380b164ed2c4b63accdf1af3f793
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 21:31:26 2022 +0100
updated events&fix footer for admin home
commit f02ea2b85b9e955076ddd0da9da179e81813b754
Merge: cef584f 123f7bd
Author: Yingbo Zhou <[email protected]>
Date: Mon Apr 11 21:18:22 2022 +0100
Merge pull request #66 from UCLComputerScience/tables
Add tables only showing the relevant project's reports
commit 123f7bd595bd8fdc892579aab4c9162abd0324e1
Author: Yingbo Zhou <[email protected]>
Date: Mon Apr 11 21:14:58 2022 +0100
Add tables only showing the relevant project's reports
commit cef584f809d300d5fa77ff9c810954d99fb47e82
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 20:45:23 2022 +0100
added SDGs to admin manage events, and move image to far left and title/desc to middle
commit 18ec0719094fa4aaebd29ac2951b8063694820b6
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 20:10:54 2022 +0100
added images and sdgs to events not logged in
commit affc73d9778bc1c18fdba65212e9af2ac278af1e
Merge: c5db176 2e706f7
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 19:18:54 2022 +0100
Merge pull request #65 from UCLComputerScience/Add-project-end-date
add project end date
commit 2e706f7bdfad702cb387f546d51b5658617c77ee
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 19:18:30 2022 +0100
add project end date
commit c5db1760f42b38ae02923b40c1294dac09de287c
Merge: 519ab23 77741f0
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 19:03:02 2022 +0100
Merge pull request #64 from UCLComputerScience/update-title-position
update title position
commit 77741f0baf05de25e999d7c6fc7848ed65ed4855
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 18:59:37 2022 +0100
update title position
commit 519ab23a418375966d7918939e6bd50f8c286505
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 17:45:32 2022 +0100
added get SDGS, strip and display to projects, and login-events. And updated display SDGs on projects-my
commit 931612b0b074572970d8a637a3f970c8412e9e53
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 17:32:04 2022 +0100
updated my projects so it displays a project's SDGs
commit 973ed01d9c1a4696abb1337b81fcbbf6b99989db
Merge: 39cca3a bae2a1a
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 17:31:08 2022 +0100
Merge pull request #63 from UCLComputerScience/events-video-url-and-misc-fixes
Events video url and misc fixes
commit bae2a1a9a72f847e77e3beaf1bf11a76d7e9c038
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 17:28:38 2022 +0100
Hiding youtube player if no video exists on events
commit f5d68c4d0a34cd8e8e0899882eae5936f97e9d90
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 17:25:57 2022 +0100
Fixing visual issues, hiding call button if no URL
commit 39cca3af031656734f9aac09c105ee716a654f2d
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 16:26:12 2022 +0100
updated Google maps on membership page
commit 246ad1d32db2b09a6eeb2db5dd9b5baee22e57c5
Merge: d0de70e a2fd81f
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 16:19:42 2022 +0100
Merge pull request #62 from UCLComputerScience/edit-user-details
Edit user details 1
commit a2fd81f1306aae1488aacaa899ee40d9277757a6
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 16:10:19 2022 +0100
Script tag added
commit cdc1fa2453d3ed203f84d59d8a1211edf07d1fc2
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 16:07:01 2022 +0100
Fixing SDG values and posting again
Now more consistent with other parts of the system, and also actually displaying what it should be.
commit 418d9a5c1574b3fae404c65efc9a135c3725fdeb
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 12:14:52 2022 +0100
Fixing SDGs so they populate properly
commit 2ba4c392449554ca002148f7b95a92a45ec984c5
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 11:49:24 2022 +0100
Updating all other fields except city, postcode, password, and SDGs
commit f2df0b11663850793630a571ef292bd5e3cf06e1
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 11:41:48 2022 +0100
Updating db for name changes
commit 91cdf64d39e3c4d9fe07fec11b1b56b329b59685
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 11 11:32:11 2022 +0100
autopopulating address
commit c5101dea10b3909f06f2f67694487ba855a3c36b
Author: Elynor Kamil <[email protected]>
Date: Sun Apr 10 22:39:28 2022 +0100
Tidying of submit button for user-profile
commit 97a04ef4b5e3fe570b2a863d5802e77d9de2bd08
Author: Elynor Kamil <[email protected]>
Date: Sun Apr 10 22:31:52 2022 +0100
Adding result page, updating route, posting values, adding errors for missing values
commit f94a805370dea2c7fec063db73c850e5874cae77
Author: Elynor Kamil <[email protected]>
Date: Sun Apr 10 21:15:13 2022 +0100
Pulling checks from db for all other sdgs
commit c631418d4c99c5f892a94e73b1dce0117d78e48d
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 20:32:55 2022 +0100
created $sdgtest example for checkbox pre-population
commit 6b42ab6dc4b39ccf120bc8d02277a76561dcab2c
Author: Elynor Kamil <[email protected]>
Date: Sun Apr 10 19:58:02 2022 +0100
Trying to get prepopulated tickboxes working
commit 0b3a4bdf25e1c9f70027a8e7ae31778893fee7c6
Author: Elynor Kamil <[email protected]>
Date: Sun Apr 10 14:56:43 2022 +0100
Adding more fields that autopopulate, working on sdgs
commit 09f0f97f5928fb437d73fa54d35a264d3e8c824e
Author: Elynor Kamil <[email protected]>
Date: Sun Apr 10 10:29:43 2022 +0100
Adding initial profile fields, pulling 'name' of user from db
commit d0de70e5ef90ef0b5cefe6163c8832300397ef83
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 14:29:03 2022 +0100
updated table title on admin-members to Manage Members
commit 73ff4bac605a7a0fc26459817acc15a7d38f2545
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 14:28:22 2022 +0100
updated title on admin-members to manage members
commit fb90f8d8939fffaefc7107f3689207d32695c93e
Merge: bed60ad add2d1b
Author: Yingbo Zhou <[email protected]>
Date: Mon Apr 11 13:37:37 2022 +0100
Merge pull request #61 from UCLComputerScience/tables
Add user table in admin-members.blade.php
commit add2d1b327ec95a23bdaf498f98769985fca7943
Author: Yingbo Zhou <[email protected]>
Date: Mon Apr 11 13:36:54 2022 +0100
Add user table in admin-members.blade.php
commit bed60ad7d63037e6866c789f04b20ed7b9f37de7
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 10:35:56 2022 +0100
added image upload and display to events logged-in, manage events and events detail, projects authed new routes, updated db
commit fe976b3a90a5132fa7c11fdbfb0a22d101ddfea0
Merge: bc43cff b90e1e4
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 01:19:03 2022 +0100
Merge pull request #60 from UCLComputerScience/updated-button-position¢red-image
updated button position¢red image
commit b90e1e4d2fdd30398fefcdc611e3f5c93920ceec
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 01:18:39 2022 +0100
updated button position¢red image
commit bc43cffde1bd2940642f88f44aa0ec753048d4d0
Merge: 2b208e0 44d2bb8
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 00:58:01 2022 +0100
Merge pull request #59 from UCLComputerScience/updated-db
updated db
commit 44d2bb8818dbddf10fe00c737acb93eba026c94c
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 11 00:57:27 2022 +0100
updated db
commit 2b208e03e6401b1dac27680796760ba83d593027
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 00:47:35 2022 +0100
updated display images
commit 4d426d9e8815f6067ea02078855ba85930ea6e67
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 00:37:34 2022 +0100
added image display to project detail
commit 21a66974fdb2db009c3390ddc5072f2caae292c1
Author: mjwsolo <[email protected]>
Date: Mon Apr 11 00:29:44 2022 +0100
Made uploaded images visible and uploaded to correct path
commit 69dfabfac88b5f694e3591a33a048a136ee0e775
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 21:15:35 2022 +0100
updating google key
commit 49b85dcc21f53e6b1d5669e91e961456ae8c99c9
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 20:42:49 2022 +0100
removed excess table from user/resources
commit bbbe37d5d71a43886b0d5b8dc9466d2a30c47d4f
Merge: 0174b27 24ddcad
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 20:33:54 2022 +0100
Merge pull request #58 from UCLComputerScience/tables
Add resource table in resources.blade.php and update db v10
commit 24ddcad902c9d1c42094ab1c2311d3842fceaf24
Merge: a0ce641 0174b27
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 20:33:47 2022 +0100
Merge branch 'main' into tables
commit a0ce641c4e662fe6581c8c7b40d1b037993943b4
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 20:23:37 2022 +0100
Add resource table in resources.blade.php and update db v10
commit 0174b27a562823b22fcbe818b354fa3150814b11
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 20:05:30 2022 +0100
added delete function to Events
commit 2223cd13fcac0fdc817326f77ce73bc38493efb4
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 19:19:51 2022 +0100
embedded tweets on admin home page
commit 250e45b60b60cab046df06b45fc41c334cf37e13
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 18:25:22 2022 +0100
updated admin nav bar
commit bb2c4ff76368fd7750914a2078e27cd99139083f
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 18:05:30 2022 +0100
added multiple SDG inputs to create events, added Google listener to projects
commit 80c6bea4727eff143752c28662e79856f1526c4a
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 16:30:12 2022 +0100
updated map on project page, so map automatically updates based on new projects being added
commit 8ffd872c4cb5ef03d08bceaa65a138f4b85d02ca
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 16:25:48 2022 +0100
updated events table and removed excess table from project-detail
commit 613e1e1f5095728f9d80089cadb01aeb33155817
Merge: 05cab9f d5c9162
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 15:45:07 2022 +0100
Merge pull request #57 from UCLComputerScience/tables
Add user identification to the files table on the projects-detail page.
commit d5c9162c401c46ce231024e6ed1dc25266e41ec5
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 15:43:42 2022 +0100
Add user identification to the files table on the projects-detail page.
commit 05cab9f14c8d38b309767318c8d987a7c40a15d2
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 15:37:56 2022 +0100
updated create projects, and create projects result, and database to allow Google Autocomplete and multiple SDGs to be added to a project
commit d21c721d1044b5dbde9e262c0735c19320cb5420
Merge: 33dae8c 9e66185
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 13:26:26 2022 +0100
Merge pull request #56 from UCLComputerScience/tables
Add db v10
commit 9e661852c308e01fa66ff7326c43b1532a2e9e70
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 13:25:39 2022 +0100
Add db v10
commit 33dae8cacb16f9f0986614f7247ce9da80b9d378
Merge: f744355 aef067c
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 12:21:59 2022 +0100
Merge pull request #55 from UCLComputerScience/tables
Add files table on the projects-detail page.
commit aef067c34bfa24ed5d60c57458c81f578d7bce64
Author: Yingbo Zhou <[email protected]>
Date: Sun Apr 10 12:17:36 2022 +0100
Add files table on the projects-detail page.
commit f744355439df94813ca2b880c2bac774777255cf
Author: mjwsolo <[email protected]>
Date: Sun Apr 10 00:08:11 2022 +0100
update members table to include sdgs and country
commit e59f597675d314e1c74cf55162d115821037a8bb
Merge: 93d307f e94aeed
Author: Jiahui Shi <[email protected]>
Date: Sat Apr 9 22:23:04 2022 +0100
Merge pull request #54 from UCLComputerScience/deleting
delete function
commit e94aeed9f7af267bac0ea48e40c3b8a221c07dbc
Author: Jiahui Shi <[email protected]>
Date: Sat Apr 9 22:22:21 2022 +0100
delete function
commit 93d307fe3df8e16661fa5ce13f0214c437850ead
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 19:38:56 2022 +0100
updated register so users can enter multiple SDGs
commit 6dd0160654c99cb298e2fbfc061a8c1be96b850f
Merge: 58392a0 b4a6df4
Author: Jiahui Shi <[email protected]>
Date: Sat Apr 9 19:22:36 2022 +0100
Merge pull request #53 from UCLComputerScience/fix-footer&admin-nav-bar
fix footer&admin nav bar
commit b4a6df46b3c591f3176d6cf9224977aabbdb692c
Author: Jiahui Shi <[email protected]>
Date: Sat Apr 9 19:21:28 2022 +0100
fix footer&admin nav bar
commit 58392a0b440f62eb673dfdf798ca8e381625b893
Merge: 7548da1 d0ab0b1
Author: Jiahui Shi <[email protected]>
Date: Sat Apr 9 19:04:46 2022 +0100
Merge pull request #52 from UCLComputerScience/add-br-
add br
commit d0ab0b1a58236b571ab187d796f4390ad89b192e
Author: Jiahui Shi <[email protected]>
Date: Sat Apr 9 19:04:03 2022 +0100
add br
commit 7548da17a517fab21ba544d63cf82bb159bf5928
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 18:20:13 2022 +0100
updated formatting on registration, Address Line 1 to Address
commit 8d371e7c1ee54bedbc7c3691fbe5296ccf617689
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 18:05:38 2022 +0100
updated register so Country automatically gets added to database from GoogleAutocomplete
commit 53abc00564f11965bedf0b10e811f5a0392bc0bf
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 16:20:20 2022 +0100
updated membership and members maps to reflect updated register fields
commit 1c910f263e6f2c35cf743ef844ffd6903efe933d
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 16:08:02 2022 +0100
updated register to hide lat and long, updated admin controller to allow SDG display on Members and Membership
commit 0b54bdf917cc04e57a3af3b24271340b321024dd
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 16:07:20 2022 +0100
updated register to hide lat and long, updated admin controller to allow SDG display on Members and Membership
commit f0020b8b2b4ef53c9321ab30c05b0e079b09d875
Merge: beee1de 72de43e
Author: Marc <[email protected]>
Date: Sat Apr 9 13:39:01 2022 +0100
Merge pull request #51 from UCLComputerScience/google_autocomplete
added google autocomplete to Register and updated DB
commit 72de43ed5d428c35fb5ef12ea23b3dc788080cce
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 13:38:31 2022 +0100
added google autocomplete to Register and updated DB
commit beee1de4f220eac697a72f26d29257d66295c7e9
Merge: e2a2c61 48838b7
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 13:25:49 2022 +0100
Merge pull request #50 from UCLComputerScience/projects-edit
Projects edit
commit 48838b7163219acae94b12b5cedaecbd4ba05bca
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 13:24:01 2022 +0100
All other project fields updating in DB, except SDG and image
commit 0007dbe6e25c07f193c12abf6136f24563bd70a9
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 13:21:55 2022 +0100
Updating project details in DB
commit 8c6d42c2d9df7fa9b29c2ea4590df511601f6db0
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 13:20:30 2022 +0100
Project title updating in DB
Also made new success message box
commit c969283e981412035b3a99d7417c6d0db84cb2df
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 12:33:51 2022 +0100
Project end date prepopulating
commit 5d9831317e028df23e5ba6644fc5b878dca5231b
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 12:28:43 2022 +0100
Prepopulating funding and value, changing SDG text
commit d244e89d5a60c13d914b20d6817ac3fb61967c4e
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 12:26:01 2022 +0100
Prepopulating project description
commit e5d32b539fceed033fab7b54fd1f5dd245855d69
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 12:24:37 2022 +0100
Prepopulating project country
commit 876fba7c0ab75aaac6181712df100acdee7f10fa
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 12:23:35 2022 +0100
Prepopulating city
Also pulling more project fields from DB
commit 4b58cb8e323870359f660ec02007e23bfe6064b4
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 12:18:48 2022 +0100
Prepopulates address line 1 from preexisting value
commit dc8a1b027fe5b59ad1f6e0ae38d544454c105e3e
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 12:10:39 2022 +0100
Updating project edit form title
Now echoes name of project
commit e2a2c61ecc122c55e06179e87077ee875f3add5c
Author: mjwsolo <[email protected]>
Date: Sat Apr 9 12:26:12 2022 +0100
added google analytics to Admin analytics page
commit 1ebf3ed4d319629fc94bc99b02b936578c37949d
Merge: 82a6b1c 96aa50d
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 11:55:05 2022 +0100
Merge pull request #49 from UCLComputerScience/edit-events-updated
Edit events updated
commit 96aa50da5e87eef3d9c5bbbadee497c61132d4ac
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 11:53:56 2022 +0100
Removing error when user removes event_call_url
commit f466dce6ef24591874ac11d294fa183cea76f29b
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 11:49:30 2022 +0100
Event datetime edit update to db
commit 90e55d503f56f496e25c395fa977dbba20926c05
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 11:48:25 2022 +0100
Datetime autopopulated with preexisting value
commit 9a5b1ab05388882e828032ca389ebdcdbc7e2d2a
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 11:24:00 2022 +0100
Updating event timezone
commit 49111cf1bf1087d7b086fb7573bb72027760cf5f
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 11:21:39 2022 +0100
Select current timezone by default
commit 293129ffc203f571378d9fd72d596d15406d8e63
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 10:34:48 2022 +0100
Edit event - video URL, call URL
These features have now been added
commit f46662ce88cbbaafff7179632417fef388a9071b
Author: Elynor Kamil <[email protected]>
Date: Sat Apr 9 10:31:11 2022 +0100
Edit for event description
Description can now be edited for events
commit 82a6b1c21eb4c792dc1bcd9e22081e9bf831b851
Merge: 3d97c73 fe9e752
Author: Elynor Kamil <[email protected]>
Date: Fri Apr 8 18:33:39 2022 +0100
Merge pull request #48 from UCLComputerScience/events-edit
Adding edit function for title only in events
commit fe9e75235987d06232c5c6fa3442d2d87fa65177
Author: Elynor Kamil <[email protected]>
Date: Fri Apr 8 18:32:58 2022 +0100
Adding edit function for title only in events
Still need to add update for other fields
commit 3d97c73ad4e68adc07f4c301f1ace623d0bbb313
Merge: de5be8c e9e4ab8
Author: Jiahui Shi <[email protected]>
Date: Fri Apr 8 14:24:55 2022 +0100
Merge pull request #47 from UCLComputerScience/fix-logged-in-nav-bar
fix logged in nav bar
commit e9e4ab896a613c919aaae0d2ee032886c95121a5
Author: Jiahui Shi <[email protected]>
Date: Fri Apr 8 14:23:52 2022 +0100
fix logged in nav bar
commit de5be8c13cddd690270cf793b3555a41d4777d3e
Author: mjwsolo <[email protected]>
Date: Fri Apr 8 13:52:09 2022 +0100
removed echos from my projects
commit eee402f43e818dc599d27577336d2a42d63d64ff
Author: mjwsolo <[email protected]>
Date: Fri Apr 8 13:48:53 2022 +0100
added authentication to projects pages
commit f38e4d8aaa017ecdd238d9b94f6fe7912c0f1b06
Merge: 9962e6d 235d8dd
Author: Yingbo Zhou <[email protected]>
Date: Fri Apr 8 13:07:21 2022 +0100
Merge pull request #25 from UCLComputerScience/new_tables
Update user table with editing and deleting functionality.
commit 235d8dd7624f69499b2d7f622529e4b51f352dbc
Author: Yingbo Zhou <[email protected]>
Date: Fri Mar 25 19:02:40 2022 +0000
Updata ancssc_database_v9.sql
commit 7468ba34f8400efcf72a1009abaaea0353f3aee5
Author: Yingbo Zhou <[email protected]>
Date: Fri Mar 25 18:55:26 2022 +0000
Update user table with editing and deleting functionality.
Update file upload and download.
commit 9962e6d7bf307a7ebacf54ddd4260772b7f13221
Merge: 10fc89b c21f8ba
Author: Marc <[email protected]>
Date: Thu Apr 7 18:01:51 2022 +0100
Merge pull request #46 from UCLComputerScience/programmable_search
added Google programmable search to website
commit c21f8bac1cf5428cd69cfb43be08daa25f8d4aa6
Author: mjwsolo <[email protected]>
Date: Thu Apr 7 18:01:29 2022 +0100
added Google programmable search to website
commit 10fc89b4caacea06bbb5a4c4c5c55af31c29c8c9
Merge: b1bdca6 091cae0
Author: Marc <[email protected]>
Date: Tue Apr 5 17:42:35 2022 +0100
Merge pull request #45 from UCLComputerScience/fixed_uuid_error
fixed the new uuid image generator
commit 091cae004e4a7dde95f30645724de26b0a702a99
Author: mjwsolo <[email protected]>
Date: Tue Apr 5 17:42:06 2022 +0100
fixed the new uuid image generator
commit b1bdca6fff837d80e42996ded0b6d38bcfba7687
Merge: e360984 5bb5c33
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 17:27:49 2022 +0100
Merge pull request #44 from UCLComputerScience/registration-field-updates
Registration field updates
commit 5bb5c332d31e58e9249bc85adc0259caf8eb86a3
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 16:22:14 2022 +0100
Adding space between end of form and footer
commit f7cc27dc560ad97cb22fb010eda87eb6a742cfbb
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 16:19:59 2022 +0100
Making postcode, no of employees, no of volunteers, and website not mandatory
commit e360984513633515ff7a4bc1e7f7dedaab0b216e
Merge: fba62f6 45dc5d8
Author: Jiahui Shi <[email protected]>
Date: Tue Apr 5 16:41:14 2022 +0100
Merge pull request #43 from UCLComputerScience/frontend-quick-wins
Update demo.blade.php
commit 45dc5d85582d928ab74da218f5f1400c89b784ba
Author: Jiahui Shi <[email protected]>
Date: Tue Apr 5 16:40:16 2022 +0100
Update demo.blade.php
commit fba62f6227aa498da68df34411d9fe1edf17321c
Merge: 032f0cb 4c49b13
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 16:00:28 2022 +0100
Merge pull request #42 from UCLComputerScience/contact-us-direct
Open email directly from contact us page
commit 4c49b1331e5efdc1f6f42665ac146ebcf10fa8e1
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 15:59:58 2022 +0100
Open email directly from contact us page
commit 032f0cb567ee666536916ca20d79c19c60fc87fa
Merge: 91c330d 008b007
Author: Jiahui Shi <[email protected]>
Date: Tue Apr 5 15:37:39 2022 +0100
Merge pull request #41 from UCLComputerScience/frontend-quick-wins
Update nav-logged-in.blade.php
commit 008b007c0be1db4553f75c5332b1bf3cca7a87e5
Author: Jiahui Shi <[email protected]>
Date: Tue Apr 5 15:36:00 2022 +0100
Update nav-logged-in.blade.php
commit 91c330de9a3c6ae1e48959326fa1b74856a56c9e
Merge: 08d25f2 0906935
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 15:34:53 2022 +0100
Merge pull request #40 from UCLComputerScience/login-centering
Login centering
commit 0906935c10b27b2d11bf080d2df9c301842f9b57
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 15:33:53 2022 +0100
Adding box for success on project creation
commit 68fe11501a1691cf7999b087e2b90720bc3a9aff
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 15:19:48 2022 +0100
Login card now centralised
commit 08d25f25b75e76e1024e420bbdff63d1d60a9dff
Merge: 83a8f46 2fa3113
Author: Jiahui Shi <[email protected]>
Date: Tue Apr 5 15:30:32 2022 +0100
Merge pull request #39 from UCLComputerScience/frontend-quick-wins
frontend
commit 2fa31131da3a619bd5fd1f88aadccb6f749f0558
Author: Jiahui Shi <[email protected]>
Date: Tue Apr 5 15:29:04 2022 +0100
frontend
commit 83a8f46557d7163a56b19798ed0189cfd313ba4a
Merge: 9d2a7ec e5d547d
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 15:07:39 2022 +0100
Merge pull request #38 from UCLComputerScience/maps
Centering maps on projects, members, membership pages
commit e5d547d5c433afb26145bd6f403a3cd2240bf346
Author: Elynor Kamil <[email protected]>
Date: Tue Apr 5 15:06:56 2022 +0100
Centering maps on projects, members, membership pages
commit 9d2a7ec264905948f5fc206c0219c74dfa21e805
Merge: 411fc28 a47a0d8
Author: Marc <[email protected]>
Date: Tue Apr 5 15:00:15 2022 +0100
Merge pull request #37 from UCLComputerScience/projects_page_with_list
updated projects to include list view, same as events list
commit a47a0d86f4f7fe0abb38466e05d3ff944cb54c8f
Author: mjwsolo <[email protected]>
Date: Tue Apr 5 14:58:45 2022 +0100
updated projects to include list view, same as events list
commit 411fc28e3dc4b003a2827e3e3555a933207dcdc7
Merge: f34f9ee 0b0a659
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 16:02:45 2022 +0100
Merge pull request #36 from UCLComputerScience/db-dummy-data
Db dummy data
commit 0b0a6591fc636f4e60adca1385ab1663c495edbd
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 16:02:18 2022 +0100
Adding location dummy values
commit 562fa9146c1b90ec727fb72075c7e00309c7be05
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 15:47:23 2022 +0100
Inserting 3 dummy events
commit f34f9eeef9de92335967526f82fca0c1b3876a73
Merge: 1e4528e b13e673
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 15:27:54 2022 +0100
Merge pull request #35 from UCLComputerScience/manage-events
Manage events
commit b13e67355320f5a7d135bd793ec3f852e1d785c6
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 15:26:57 2022 +0100
Tidy up of test echoes
commit 4c834f1985f48d65bc9b029c523276c4a0a513ca
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 15:20:47 2022 +0100
Update admin-events-edit.blade.php
commit 0646150e3feed816e77932f27a23acce2f4649e6
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 14:15:25 2022 +0100
Populating event_description
commit ffcfec01169a41b4f3116bf7671f24b2ef557cd0
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 14:12:14 2022 +0100
Show call_url, video_url
commit 39f1c8f4bf9c28561d76ec726e2957e8e3af4789
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 12:56:04 2022 +0100
Adding video link, updating event edit to pull data
Currently just pulling data for event title
commit 4b5f356ca75ade89de4166f72e08f474005cfae6
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 12:39:30 2022 +0100
Event edit route added
commit 1e4528edb47ae69ab71fe915c86a93d21a14b3b8
Merge: cd9c61d 48ad892
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 4 13:41:53 2022 +0100
Merge pull request #34 from UCLComputerScience/fix-footer-position-and-admin-nav-bar
fix footer position&admin nav bar
commit 48ad892e1679e4a90f695133d1b6439926a16d1a
Author: Jiahui Shi <[email protected]>
Date: Mon Apr 4 13:41:35 2022 +0100
fix footer position&admin nav bar
commit cd9c61de8e806b3a7d3b51cfee6023040061e96f
Merge: 5f753ad 9a1ccd4
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 12:27:14 2022 +0100
Merge pull request #33 from UCLComputerScience/event-details-times-image
Event details times, manage events
commit 9a1ccd446db961c4505083d8e6992a5e78713628
Author: Elynor Kamil <[email protected]>
Date: Mon Apr 4 12:22:41 2022 +0100
Manage events updates