1 # -*- coding: utf-8 -*-
2 # This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 from django.conf.urls import include, url
6 from django.utils.translation import string_concat, ugettext_lazy as _
11 url(r'^$', views.events, name='events'),
12 url(string_concat('^', _('past'), '/$'), views.events_past, name='events_past'),