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

View File

@@ -0,0 +1,14 @@
from django.utils.translation import gettext as _
class ParksPlugin:
"""
Plugin for handling parks in the wiki system.
Core registration will be added later.
"""
slug = 'parks'
sidebar = {
'headline': _('Park Information'),
'icon_class': 'fa-info-circle',
'template': 'wiki/plugins/parks/sidebar.html',
}