url(r'^$', mil_home_view, name="mil_home"),
url(r'^kompetencje/', include('curriculum.urls')),
url(r'^wez-udzial/', include('comment.urls')),
url(r'^zglos/', include('contact.urls')),
url(r'^$', mil_home_view, name="mil_home"),
url(r'^kompetencje/', include('curriculum.urls')),
url(r'^wez-udzial/', include('comment.urls')),
url(r'^zglos/', include('contact.urls')),
- url(r'^kontakt/$', mil_contact_view, name='mil_contact')
+ url(r'^kontakt/$', mil_contact_view, name='mil_contact'),
+ url(r'^bazawiedzy/(?P<url>.*)$', mil_knowledge_base_view,
+ name="knowledge_base"),
url(r'^media/(?P<path>.*)$', 'django.views.static.serve', {
'document_root': settings.MEDIA_ROOT,
}),
url(r'^media/(?P<path>.*)$', 'django.views.static.serve', {
'document_root': settings.MEDIA_ROOT,
}),