kumify/mood/templatetags/mood_categories.py

8 lines
194 B
Python
Raw Normal View History

from django import template
register = template.Library()
@register.simple_tag(takes_context=True)
def other_activities(context):
return context["user"].activity_set.filter(category=None)