Browse Source

Merge pull request #108 from interlegis/new_sigi

New sigi
pull/115/head
Sesostris Vieira 3 years ago
committed by GitHub
parent
commit
c57d2940fe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      sigi/apps/eventos/admin.py
  2. 4
      sigi/apps/home/templatetags/menu_conf.yaml

5
sigi/apps/eventos/admin.py

@ -91,3 +91,8 @@ class EventoAdmin(admin.ModelAdmin):
return HttpResponseRedirect('.')
adicionar_eventos.short_description = _(u"Armazenar eventos no carrinho "
u"para exportar")
def lookup_allowed(self, lookup, value):
return (super(EventoAdmin, self).lookup_allowed(lookup, value) or
lookup in ['tipo_evento__nome__exact',
'tipo_evento__nome__contains'])

4
sigi/apps/home/templatetags/menu_conf.yaml

@ -47,6 +47,10 @@ main_menu:
children:
- title: Eventos
url: eventos/evento/
- title: Oficinas
url: eventos/evento/?tipo_evento__nome__contains=Oficina
- title: Visitas Interlegis
url: eventos/evento/?tipo_evento__nome__exact=Visita Interlegis
- title: Calendário mensal
url: eventos/calendario
- title: Alocação de equipe

Loading…
Cancel
Save