From 26e6bb7727697b13a47d296ab2b5997cef740987 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 25 Aug 2011 10:37:19 +0100 Subject: [PATCH] status == api_status --- app/hr/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/hr/forms.py b/app/hr/forms.py index eba8dc9..6fda43b 100644 --- a/app/hr/forms.py +++ b/app/hr/forms.py @@ -27,7 +27,7 @@ def CreateRecommendationForm(user): def CreateApplicationForm(user): """ Generate a Application form based on the user's permissions """ - characters = EVEPlayerCharacter.objects.filter(eveaccount__user=user, eveaccount__status=API_STATUS_OK) + characters = EVEPlayerCharacter.objects.filter(eveaccount__user=user, eveaccount__api_status=API_STATUS_OK) corporations = EVEPlayerCorporation.objects.filter(application_config__is_accepting=True) class ApplicationForm(forms.Form):