예제 #1
0
파일: dashboard.py 프로젝트: phlax/pootle
def checks():
    from django.core.checks.registry import registry

    return registry.run_checks()
예제 #2
0
def checks():
    from django.core.checks.registry import registry

    return [e for e in registry.run_checks() if not e.is_silenced()]
예제 #3
0
def checks():
    from django.core.checks.registry import registry

    return registry.run_checks()
예제 #4
0
def checks():
    from django.core.checks.registry import registry

    return [e for e in registry.run_checks() if not e.is_silenced()]