Skip to content

Commit

Permalink
Hot fix -- we were incorrectly counting vesting org members.
Browse files Browse the repository at this point in the history
Fixes #958
  • Loading branch information
Matt Phillips committed Jul 23, 2015
1 parent b442fb5 commit e182fea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perma_web/perma/templates/user_management/manage_orgs.html
Expand Up @@ -129,7 +129,7 @@ <h4>Add a new organization</h4>
</div>
<div class="col-sm-7 center-list-count">
<div class="list-count-group"><a href="{% url 'user_management_manage_organization_user' %}?org={{org.id}}">
<p class="list-count-number">{{ org.vesting_users|default_if_none:"0" }}</p>
<p class="list-count-number">{{ org.organization_users|default_if_none:"0" }}</p>
<p class="list-count-label">users</p></a>
</div>
{% comment %}
Expand All @@ -152,7 +152,7 @@ <h4>Add a new organization</h4>
<p class="list-date">
created {{ org.date_created|date:'N j, Y' }}
<br>
{% if org.vesting_users %}
{% if org.organization_users %}
last active {{ org.last_active|date:'N j, Y'}}
{% else %}
<span class="text-warning">no existing users</span>
Expand Down

0 comments on commit e182fea

Please sign in to comment.