blob: be6b14bb7538ec7d0c21ce1756ca65a56f2e43e0 (
plain)
1
2
3
4
5
6
7
|
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class ChecklistsConfig(AppConfig):
name = "checklists"
verbose_name = _("Release Checklists")
|