From 46c08db591e908b2b59214754d134e9250c01ff5 Mon Sep 17 00:00:00 2001 From: Ethan Nguyen Date: Mon, 19 Apr 2021 23:24:10 -0400 Subject: [PATCH] feat: make college_list.html table horizontally scrollable --- .../templates/destinations/college_list.html | 86 ++++++++++--------- 1 file changed, 44 insertions(+), 42 deletions(-) diff --git a/tjdests/templates/destinations/college_list.html b/tjdests/templates/destinations/college_list.html index b180164..fa50dd8 100644 --- a/tjdests/templates/destinations/college_list.html +++ b/tjdests/templates/destinations/college_list.html @@ -7,50 +7,52 @@

Note: All data is self-reported. We do not make any claim as to the accuracy of this data.

- - - - - - - - - - - - - - - - - {% for college in object_list %} +
+
University NameTotal ApplicationsAdmittedWaitlistedWaitlist-AdmittedWaitlist-DeniedDeferredDeferred-AdmittedDeferred-DeniedDenied
+ - - - - - - - - - - + + + + + + + + + + - {% empty %} - - - - - - - - - - - - {% endfor %} - -
{{ college.name }}{{ college.count_decisions }}{{ college.count_admit }}{{ college.count_waitlist }}{{ college.count_waitlist_admit }}{{ college.count_waitlist_deny }}{{ college.count_defer }}{{ college.count_defer_admit }}{{ college.count_defer_deny }}{{ college.count_deny }}University NameTotal ApplicationsAdmittedWaitlistedWaitlist-AdmittedWaitlist-DeniedDeferredDeferred-AdmittedDeferred-DeniedDenied
There is no data to display.
+ + + {% for college in object_list %} + + {{ college.name }} + {{ college.count_decisions }} + {{ college.count_admit }} + {{ college.count_waitlist }} + {{ college.count_waitlist_admit }} + {{ college.count_waitlist_deny }} + {{ college.count_defer }} + {{ college.count_defer_admit }} + {{ college.count_defer_deny }} + {{ college.count_deny }} + + {% empty %} + + There is no data to display. + + + + + + + + + + {% endfor %} + + +