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

a badges app for Django

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

ugettext functions were marked as deprecated in Django 3.0 and removed in 4.0 Changes proposed in this PR: * use gettext_lazy instead of ugettext_lazy

TestAsyncBadge ```python class TestAsyncBadge(Badge): async_ = True slug = "test_async_badge" levels = [ ... ] events = [ "something_awarded", ] multiple = False def award(self, **state): ... badges.register(TestAsyncBadge) ``` ```python...

bug

### 'Profile' object has no attribute 'award_points' error . I used code given in readme file;but _"request.user.profile.award_points(15)"_ line gives me " 'Profile' object has no attribute 'award_points' " error. Can...

As in question, is there any option to add image to every badge?

question

Is there any provision for updating the user badge using 'possibly_award_badge'? Presently the user level is not updating in case if the level is increased by 1. # awarded levels...

question

It would be great if an optional ImageField would be stored on the model that would use the configured storage engine. You could also allow the upload_to to be a...

i don't find any templates...

Would be nice to add templates for `badges.html` and `badge_detail.html`, as well as show the usage of `badge_count` and `badges_for_user` templatetags.

In a project I'm working on at the moment, I have a CharField referring to a badge with a choices I have to construct myself. It would be nice if...

``` pinax/badges/signals.py:3: RemovedInDjango40Warning: The providing_args argument is deprecated. As it is purely documentational, it has no replacement. If you rely on this argument as documentation, you can move the text...