コード例 #1
0
ファイル: dashboard.py プロジェクト: phlax/pootle
def checks():
    from django.core.checks.registry import registry

    return registry.run_checks()
コード例 #2
0
ファイル: dashboard.py プロジェクト: SafaAlfulaij/pootle
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()]