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

An easy to use django app that provides Foursquare/Stack Overflow style badges

Results 11 django-badges issues
Sort by recently updated
recently updated
newest added

when package installed with pip and `urlpatterns += [url(r'^badges/', include(badges.urls)),]` page fails with ``` TemplateDoesNotExist at /badges/ badges/overview.html ```

I can not receive the signal. There are no errors, I see the saving of the BadgeToUser model, but the signal does not come

Automatic registration, from MetaBadgeMeta does not work, and it is necessary to register manually. Is it correct?

Request Method: | GET -- | -- http://0.0.0.0:8000/admin/badges/badge/exam/change/ 1.11.5 NoReverseMatch Reverse for 'badge_detail' not found. 'badge_detail' is not a valid view function or pattern name. /usr/local/lib/python3.5/site-packages/django/urls/resolvers.py in _reverse_with_prefix, line 497...

https://github.com/jiaaro/django-badges/blob/master/badges/urls.py#L1 is already obsolete for newer versions of django.

Need to use something like: from django.conf.urls import patterns, url, include instead.

RemovedInDjango19Warning: Model class badges.models.Badge doesn't declare an explicit app_label and either isn't in an application in INSTALLED_APPS or else was imported before its application was loaded. This will no longer...

Is it possible to remove badges from user, when check conditions are no longer true?

I've been chasing down a problem with badges not being in my database when I run unit tests. It's related to the `registered_badges` dictionary. The `post_syncdb` hook in `listeners.py` creates...