Skip to content

Commit

Permalink
removed club application statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
Centurionactionx committed Nov 22, 2024
1 parent 87628d5 commit 6a9f045
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions core/templates/core/organization/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,9 @@
{% block main %}
<div class="container">
<div class="card-container">
<div class="legend">
<div class="legend-items">
<div class="green-square"></div>
<span>Open Membership</span>
</div>
<div class="legend-items">
<div class="yellow-square"></div>
<span>Accepting Applications</span>
</div>
<div class="legend-items">
<div class="red-square"></div>
<span>Closed Applications</span>
</div>
</div>
<div class="cards">
{% for organization in organizations %}
<div class="card {% if organization.is_open %} green-status {% elif organization.applications_open %} yellow-status {% else %} red-status {% endif %}">
<div class="card">
<div class="valign-wrapper">
<div class="club-logo">
{% if organization.icon %}
Expand Down

2 comments on commit 6a9f045

@JasonLovesDoggo
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remember that you're removing CSS classes, which is leaving (potentially) dead css around.

@Centurionactionx
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh true

Please sign in to comment.