From dbfc9b422bc2540852c29b14206ad23cbc7f9fb8 Mon Sep 17 00:00:00 2001 From: Ethan Nguyen Date: Wed, 21 Apr 2021 19:49:42 -0400 Subject: [PATCH] chore(profile): remove extra tab --- tjdests/templates/profile/profile.html | 74 +++++++++++++------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/tjdests/templates/profile/profile.html b/tjdests/templates/profile/profile.html index 9722d08..1b6ca68 100644 --- a/tjdests/templates/profile/profile.html +++ b/tjdests/templates/profile/profile.html @@ -19,47 +19,47 @@
{% if request.user.is_senior %} + Add decision +
-

Your current decisions are:

+

Your current decisions are:

- - +
+ + + + + + + + + + {% for decision in decisions_list %} - - - - + + + + - - - {% for decision in decisions_list %} - - - - - - - {% empty %} - - - - - - - {% endfor %} - -
University NameAdmissions RoundResult
University NameAdmissions RoundResult{{ decision.college.name }}{{ decision.get_decision_type_display }}{{ decision.get_admission_status_display }}{% if request.user.attending_decision == decision %}, Attending{% endif %} + {# edit button #} + + + + {# delete #} + + + +
{{ decision.college.name }}{{ decision.get_decision_type_display }}{{ decision.get_admission_status_display }}{% if request.user.attending_decision == decision %}, Attending{% endif %} - {# edit button #} - - - - {# delete #} - - - -
There is no data to display.
+ {% empty %} + + There is no data to display. + + + + + {% endfor %} + + {% else %}

You are not a senior, therefore you cannot add decisions.

{% endif %}