3527b0a75b
* New user model (used Django's AbstractBaseUser) * Renamed the app to users * removed person api See #861 Fixed #576 #478
19 lines
498 B
Python
19 lines
498 B
Python
from django.utils.translation import ugettext_lazy
|
|
|
|
from openslides.utils.personal_info import PersonalInfo
|
|
|
|
from .models import Item
|
|
|
|
|
|
class AgendaPersonalInfo(PersonalInfo):
|
|
"""
|
|
Class for user info block for the agenda app.
|
|
"""
|
|
headline = ugettext_lazy('I am on the list of speakers of the following items')
|
|
default_weight = 10
|
|
|
|
def get_queryset(self):
|
|
return Item.objects.filter(
|
|
speaker__user=self.request.user,
|
|
speaker__begin_time=None)
|