You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
423 B
13 lines
423 B
from django.apps import AppConfig
|
|
from django.contrib.staticfiles.checks import check_finders
|
|
from django.core import checks
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class StaticFilesConfig(AppConfig):
|
|
name = "django.contrib.staticfiles"
|
|
verbose_name = _("Static Files")
|
|
ignore_patterns = ["CVS", ".*", "*~"]
|
|
|
|
def ready(self):
|
|
checks.register(check_finders, checks.Tags.staticfiles)
|
|
|