Source code for htmx_views.apps

from __future__ import unicode_literals

# Python imports
from os.path import basename, dirname

# Django imports
from django.apps import AppConfig


[docs] class HTMXViewsConfig(AppConfig): """Django App config object for the htmx_views app.""" name = basename(dirname(__file__)) default = True
[docs] class EquipmentConfig(HTMXViewsConfig): """Compatibility name for code importing the former app config.""" default = False