Files
mnemosyne/mnemosyne/themis/apps.py
Robert Helewka 99bdb4ac92 Add Themis application with custom widgets, views, and utilities
- Implemented custom form widgets for date, time, and datetime fields with DaisyUI styling.
- Created utility functions for formatting dates, times, and numbers according to user preferences.
- Developed views for profile settings, API key management, and notifications, including health check endpoints.
- Added URL configurations for Themis tests and main application routes.
- Established test cases for custom widgets to ensure proper functionality and integration.
- Defined project metadata and dependencies in pyproject.toml for package management.
2026-03-21 02:00:18 +00:00

14 lines
339 B
Python

from django.apps import AppConfig
class ThemisConfig(AppConfig):
"""Configuration for the Themis app."""
default_auto_field = "django.db.models.BigAutoField"
name = "themis"
verbose_name = "Themis"
def ready(self):
"""Import signal handlers when app is ready."""
import themis.signals # noqa: F401