|
|
@ -122,26 +122,31 @@ class StareNovinkyView(generic.ListView): |
|
|
|
|
|
|
|
### Co je M&M |
|
|
|
|
|
|
|
## Organizatori |
|
|
|
|
|
|
|
# Organizatori |
|
|
|
def aktivniOrganizatori(rok=date.today().year): |
|
|
|
return Organizator.objects.exclude( |
|
|
|
organizuje_do_roku__isnull=False, |
|
|
|
organizuje_do_roku__lt=rok |
|
|
|
).order_by('user__first_name') |
|
|
|
return Organizator.objects.exclude( |
|
|
|
organizuje_do_roku__isnull=False, |
|
|
|
organizuje_do_roku__lt=rok |
|
|
|
).order_by('user__first_name') |
|
|
|
|
|
|
|
|
|
|
|
class CojemamOrganizatoriView(generic.ListView): |
|
|
|
model = Organizator |
|
|
|
template_name='seminar/cojemam/organizatori.html' |
|
|
|
template_name = 'seminar/cojemam/organizatori.html' |
|
|
|
queryset = aktivniOrganizatori() |
|
|
|
|
|
|
|
def get_context_data(self, **kwargs): |
|
|
|
context = super(CojemamOrganizatoriView, self).get_context_data(**kwargs) |
|
|
|
context['aktivni'] = True |
|
|
|
return context |
|
|
|
|
|
|
|
|
|
|
|
class CojemamOrganizatoriStariView(generic.ListView): |
|
|
|
model = Organizator |
|
|
|
template_name='seminar/cojemam/organizatori.html' |
|
|
|
queryset = Organizator.objects.exclude(id__in = aktivniOrganizatori()).order_by('-organizuje_do_roku') |
|
|
|
template_name = 'seminar/cojemam/organizatori.html' |
|
|
|
queryset = Organizator.objects.exclude( |
|
|
|
id__in=aktivniOrganizatori()).order_by('-organizuje_do_roku') |
|
|
|
|
|
|
|
### Archiv |
|
|
|
|
|
|
@ -807,24 +812,23 @@ def texDownloadView(request, rocnik, cislo): |
|
|
|
return JsonResponse(response) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Ceka na autocomplete v3 |
|
|
|
#class OrganizatorAutocomplete(autocomplete.Select2QuerySetView): |
|
|
|
# def get_queryset(self): |
|
|
|
# if not self.request.user.is_authenticated(): |
|
|
|
# return Organizator.objects.none() |
|
|
|
# class OrganizatorAutocomplete(autocomplete.Select2QuerySetView): |
|
|
|
# def get_queryset(self): |
|
|
|
# if not self.request.user.is_authenticated(): |
|
|
|
# return Organizator.objects.none() |
|
|
|
# |
|
|
|
# qs = aktivniOrganizatori() |
|
|
|
# qs = aktivniOrganizatori() |
|
|
|
# |
|
|
|
# if self.q: |
|
|
|
# if self.q[0] == "!": |
|
|
|
# qs = Organizator.objects.all() |
|
|
|
# query = self.q[1:] |
|
|
|
# else: |
|
|
|
# query = self.q |
|
|
|
# qs = qs.filter( |
|
|
|
# Q(prezdivka__isstartswith=query)| |
|
|
|
# Q(user__first_name__isstartswith=query)| |
|
|
|
# Q(user__last_name__isstartswith=query)) |
|
|
|
# if self.q: |
|
|
|
# if self.q[0] == "!": |
|
|
|
# qs = Organizator.objects.all() |
|
|
|
# query = self.q[1:] |
|
|
|
# else: |
|
|
|
# query = self.q |
|
|
|
# qs = qs.filter( |
|
|
|
# Q(prezdivka__isstartswith=query)| |
|
|
|
# Q(user__first_name__isstartswith=query)| |
|
|
|
# Q(user__last_name__isstartswith=query)) |
|
|
|
# |
|
|
|
# return qs |
|
|
|
# return qs |
|
|
|