mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
9 lines
240 B
Python
9 lines
240 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class HRApplicationsConfig(AppConfig):
|
|
name = 'allianceauth.hrapplications'
|
|
label = 'hrapplications'
|
|
verbose_name = _('HR Applications')
|