This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/subjects/apps.py

9 lines
236 B
Python
Raw Permalink Normal View History

2023-12-19 13:49:34 +01:00
from django.apps import AppConfig
2025-02-17 22:10:38 +01:00
from django.utils.translation import gettext_lazy as _
2023-12-19 13:49:34 +01:00
class SubjectsConfig(AppConfig):
2024-02-03 22:07:20 +01:00
default_auto_field = 'django.db.models.BigAutoField'
name = 'subjects'
2025-02-17 22:10:38 +01:00
verbose_name = _('subjects')