django-badgify icon indicating copy to clipboard operation
django-badgify copied to clipboard

A reusable application to create your own badge engine using Django

Results 3 django-badgify issues
Sort by recently updated
recently updated
newest added

This PR resolves errors caused from import_module of importlib. The above doesn't know how to import custom AppConfig (https://docs.djangoproject.com/en/1.10/ref/applications/#for-application-users)

Say badgify.register(Badge1) badgify.register(Badge2) or badgify.register([Badge1, Badge2]) only Badge2 gets registered.

Hello! There is such issue here, but I want to tell about the bug, I think. - Firstly, from docs: `from badgify.models import base` and `base.Badge` but there is no...