mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 07:51:09 -05:00
14 lines
362 B
Python
14 lines
362 B
Python
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',
|
|
} |