This commit is contained in:
rachidatecs 2023-08-21 17:16:00 -04:00
parent 892ad926df
commit 7722b81d36
No known key found for this signature in database
GPG key ID: 3CEBBFA7325E5525

View file

@ -10,7 +10,7 @@ def index(request):
if request.user.is_authenticated:
applications = DomainApplication.objects.filter(creator=request.user)
# Let's exclude the approved applications since our
# domain_applications context will be used to populate
# domain_applications context will be used to populate
# the active applications table
context["domain_applications"] = applications.exclude(status="approved")