When I get a badge, I would like to see the association between that and my action specifically in the activity tab in my profile. For instance, if I get a "nice question" badge, I want it to be shown against the link of the question which I received it for.
Okay, I've implemented this on my fork, both on the activity tab and the overview page, but only for badges originating from either questions or answers.
A bit of a hack, hopefully Evgeny can clean it up... :)
For the overview tab, I just add a template list:
awarded_badge_context = models.Award.objects.filter(
user = user
).values(
'object_id', 'badge', 'content_type'
)
and then use these to get the id of the associated question or answer (object_id) and whether it is a question or an answer (content_type), then display a collapsible list of links below each badge type, hidden by default, opened via jquery clicking on the badge count (x1, etc.).
For the activity page, had to add some variables to the db query populating the user's awards (content_type_id and object_id). Preserve question and answer lists as fetched, pass them to the template and do the same as on the overview tab, this time with a simple (source) link beside the badge.
The links to answers don't have the associated question slug or the question summary in them, but they work anyway, so I left it for now.
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2011-07-18 06:37:21 -0500
Seen: 81 times
Last updated: Jul 25 '11
Where are the badges in a fresh install? [fixed]
Exception 'taxonomist' unknown key
'Commentator' badge seems broken
Selecting the "unanswered" filter should not show closed questions
Please give feedback about new badges
Is it possible to remove some badges (or all) ?
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.