dirtycoder/pets

View on GitHub
pets/users/context_processors.py

Summary

Maintainability
A
0 mins
Test Coverage
from .models import OwnerProfile


def users_count(request):
    return {"users_count": OwnerProfile.objects.count()}