Changeset 04bdacd for asadb/groups


Ignore:
Timestamp:
Sep 9, 2012, 6:43:39 AM (14 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage
Children:
7e45324
Parents:
52a6940
git-author:
Alex Dehnert <adehnert@…> (09/08/12 22:41:04)
git-committer:
Alex Dehnert <adehnert@…> (09/09/12 06:43:39)
Message:

Show group recognition status on constitution page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/groups/views.py

    r52a6940 r04bdacd  
    10271027def downloaded_constitutions(request, ):
    10281028    constitutions = groups.models.GroupConstitution.objects
    1029     constitutions = constitutions.order_by('failure_reason', 'status_msg', 'failure_date', 'group__name', ).select_related('group')
     1029    constitutions = constitutions.order_by('failure_reason', 'status_msg', 'failure_date', 'group__name', ).select_related('group', 'group__group_status', )
    10301030    failures = collections.defaultdict(list)
    10311031    successes = collections.defaultdict(list)
Note: See TracChangeset for help on using the changeset viewer.