Update web/core/models.py

This commit is contained in:
Joshua Laymon 2025-08-31 00:17:38 +00:00
parent 4ab80ef1d1
commit 1d5375ca76

View File

@ -23,3 +23,4 @@ class ScriptureRef(models.Model):
def __str__(self): return f"{self.book} {self.chapter_from}:{self.verse_from}" def __str__(self): return f"{self.book} {self.chapter_from}:{self.verse_from}"
from .models_user import * # registers UserPrefs, SearchHistory, ViewedIllustration from .models_user import * # registers UserPrefs, SearchHistory, ViewedIllustration
from .models_ann import * # registers Announcement & AnnouncementDismissal from .models_ann import * # registers Announcement & AnnouncementDismissal
from .models_login import * # LoginAttempt model + auth signal receivers