示例#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()]