Add better plugin description + new example plugin

Add better plugin description + new example plugin
This commit is contained in:
Master3395
2025-09-11 20:04:09 +02:00
parent 41ead838ef
commit dfbbccf073
15 changed files with 3801 additions and 0 deletions

11
testPlugin/apps.py Normal file
View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
from django.apps import AppConfig
class TestPluginConfig(AppConfig):
name = 'testPlugin'
verbose_name = 'Test Plugin'
def ready(self):
# Import signal handlers
import testPlugin.signals