fnp
/
edumed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c2f375adb14d8eb90b4aaeb0d109b754a81773da
[edumed.git]
/
edumed
/
milurls.py
1
from django.conf.urls import patterns, include, url
2
from .views import MILHomeView
3
4
5
urlpatterns = patterns('',
6
url(r'^$', MILHomeView.as_view(), name="mil_home"),
7
url(r'^kompetencje/', include('curriculum.urls')),
8
)
9
10
11