Implement wiki and parks plugin architecture: add initial app configurations, models, and update dependencies

This commit is contained in:
pacnpal
2025-02-22 20:55:00 -05:00
parent 02e4b82beb
commit 2faf0368cf
30 changed files with 2973 additions and 316 deletions

11
wiki/apps.py Normal file
View File

@@ -0,0 +1,11 @@
from django.apps import AppConfig
class WikiConfig(AppConfig):
name = 'wiki'
verbose_name = 'Wiki'
def ready(self):
"""
Register signals and perform other initialization
"""
pass