mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-13 12:33:23 +02:00
9 lines
282 B
Python
9 lines
282 B
Python
from __future__ import unicode_literals
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class AttachmentsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.AutoField'
|
|
name = "attachments"
|
|
verbose_name = _("Attachments")
|