blob: 32ccab66eb8fccd102a52f21b05eb1e2354d72fc (
plain)
1
2
3
4
5
6
7
|
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class ArchaeologicalFilesConfig(AppConfig):
name = "archaeological_files"
verbose_name = _("Ishtar - File")
|