Match godparents with new members in juntagrico to help them get started.
This is an extension for juntagrico. You can find more information about juntagrico here (https://github.com/juntagrico/juntagrico)
Install juntagrico-godparent via pip
$ pip install juntagrico-godparent
or add it in your projects requirements.txt
In settings.py add 'juntagrico_godparent', somewhere above 'juntagrico',.
INSTALLED_APPS = [
...
'juntagrico_godparent',
'juntagrico',
]In your urls.py you also need to extend the pattern:
urlpatterns = [
...
path('jgo/', include('juntagrico_godparent.urls')),
]The following signals are sent.
created(instance)from Godparent and Godchild, on signing upchanged(instance)from Godparent and Godchild, when changing their detailsreactivated(instance)from Godparent, when they click the button to become godparent againmatched(godchild, matcher), from Godchild, when a matcher matches them